From 4a136ea00592d1b467c1834e8c5fd2ce5bd98ecd Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Wed, 10 Apr 2019 17:05:03 -0500 Subject: [PATCH] Test AES-GCM-SIV with OPENSSL_SMALL. https://boringssl-review.googlesource.com/16805 inadvertently restored the OPENSSL_SMALL condition in aead_test.cc. I probably handled some merge conflict wrong. Change-Id: I1b29fbd4a0a57d94cd8b5bddf7c81ae10063e2a8 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/35544 Reviewed-by: Adam Langley --- crypto/cipher_extra/aead_test.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/crypto/cipher_extra/aead_test.cc b/crypto/cipher_extra/aead_test.cc index e3acce1e..25d4a8ee 100644 --- a/crypto/cipher_extra/aead_test.cc +++ b/crypto/cipher_extra/aead_test.cc @@ -55,12 +55,10 @@ static const struct KnownAEAD kAEADs[] = { 0}, {"AES_256_GCM_NIST", EVP_aead_aes_256_gcm, "nist_cavp/aes_256_gcm.txt", false, true, 0}, -#if !defined(OPENSSL_SMALL) {"AES_128_GCM_SIV", EVP_aead_aes_128_gcm_siv, "aes_128_gcm_siv_tests.txt", false, false, 0}, {"AES_256_GCM_SIV", EVP_aead_aes_256_gcm_siv, "aes_256_gcm_siv_tests.txt", false, false, 0}, -#endif {"ChaCha20Poly1305", EVP_aead_chacha20_poly1305, "chacha20_poly1305_tests.txt", false, true, 0}, {"XChaCha20Poly1305", EVP_aead_xchacha20_poly1305,