1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Replaced MBEDTLS_GCM_LARGETABLE by MBEDTLS_GCM_LARGE_TABLE. Removed empty comment line in doc block.

Signed-off-by: Matthias Schulz <mschulz@hilscher.com>
This commit is contained in:
Matthias Schulz
2024-02-09 17:09:42 +01:00
parent 10902c5640
commit a6ac0f1330
4 changed files with 10 additions and 11 deletions

View File

@ -4942,15 +4942,15 @@ component_test_aes_only_128_bit_keys_have_builtins () {
}
component_test_gcm_largetable () {
msg "build: default config + GCM_LARGETABLE - AESNI_C - AESCE_C"
scripts/config.py set MBEDTLS_GCM_LARGETABLE
msg "build: default config + GCM_LARGE_TABLE - AESNI_C - AESCE_C"
scripts/config.py set MBEDTLS_GCM_LARGE_TABLE
scripts/config.py unset MBEDTLS_PADLOCK_C
scripts/config.py unset MBEDTLS_AESNI_C
scripts/config.py unset MBEDTLS_AESCE_C
make CFLAGS='-O2 -Werror -Wall -Wextra'
msg "test: default config - GCM_LARGETABLE - AESNI_C - AESCE_C"
msg "test: default config - GCM_LARGE_TABLE - AESNI_C - AESCE_C"
make test
}