aria: disable by default in config.h

This commit is contained in:
Manuel Pégourié-Gonnard 2018-02-27 12:22:36 +01:00
parent 26b54fabaf
commit 2268b967cb
2 changed files with 4 additions and 3 deletions

View File

@ -1806,11 +1806,12 @@
/** /**
* \def MBEDTLS_ARIA_C * \def MBEDTLS_ARIA_C
* *
* Enable the ARIA block cipher. * Enable the ARIA block cipher (and TLS ciphersuites that use it, if other
* requirements for them are met too).
* *
* Module: library/aria.c * Module: library/aria.c
*/ */
#define MBEDTLS_ARIA_C //#define MBEDTLS_ARIA_C
/** /**
* \def MBEDTLS_CCM_C * \def MBEDTLS_CCM_C

View File

@ -57,7 +57,7 @@ FILTER=""
# - NULL: excluded from our default config # - NULL: excluded from our default config
# - RC4, single-DES: requires legacy OpenSSL/GnuTLS versions # - RC4, single-DES: requires legacy OpenSSL/GnuTLS versions
# avoid plain DES but keep 3DES-EDE-CBC (mbedTLS), DES-CBC3 (OpenSSL) # avoid plain DES but keep 3DES-EDE-CBC (mbedTLS), DES-CBC3 (OpenSSL)
# - ARIA: requires OpenSSL >= 1.1.1 # - ARIA: not in default config.h + requires OpenSSL >= 1.1.1
EXCLUDE='NULL\|DES-CBC-\|RC4\|ARCFOUR\|ARIA' EXCLUDE='NULL\|DES-CBC-\|RC4\|ARCFOUR\|ARIA'
VERBOSE="" VERBOSE=""
MEMCHECK=0 MEMCHECK=0