mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 14:05:39 +00:00
Add comment in compat.sh about callers
Also update comments about default versions and excludes while at it. Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
b623832176
commit
6abc6259d5
|
@ -67,17 +67,19 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# default values for options
|
# default values for options
|
||||||
MODES="tls1 tls1_1 tls12 dtls1 dtls12"
|
# /!\ keep this synchronised with:
|
||||||
|
# - basic-build-test.sh
|
||||||
|
# - all.sh (multiple components)
|
||||||
|
MODES="tls1 tls1_1 tls12 dtls1 dtls12" # ssl3 not in default config
|
||||||
VERIFIES="NO YES"
|
VERIFIES="NO YES"
|
||||||
TYPES="ECDSA RSA PSK"
|
TYPES="ECDSA RSA PSK"
|
||||||
FILTER=""
|
FILTER=""
|
||||||
# exclude:
|
# exclude:
|
||||||
# - NULL: excluded from our default config
|
# - NULL: excluded from our default config + requires OpenSSL legacy
|
||||||
# - 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)
|
# - 3DES: not in default config
|
||||||
# - ARIA: not in default config.h + requires OpenSSL >= 1.1.1
|
# - ARIA: not in default config.h + requires OpenSSL >= 1.1.1
|
||||||
# - ChachaPoly: requires OpenSSL >= 1.1.0
|
# - ChachaPoly: requires OpenSSL >= 1.1.0
|
||||||
# - 3DES: not in default config
|
|
||||||
EXCLUDE='NULL\|DES\|RC4\|ARCFOUR\|ARIA\|CHACHA20-POLY1305'
|
EXCLUDE='NULL\|DES\|RC4\|ARCFOUR\|ARIA\|CHACHA20-POLY1305'
|
||||||
VERBOSE=""
|
VERBOSE=""
|
||||||
MEMCHECK=0
|
MEMCHECK=0
|
||||||
|
|
Loading…
Reference in a new issue