From 16ce670897b987c5677ffceef51d27683f186187 Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Tue, 28 Jan 2020 10:45:31 -0600 Subject: [PATCH] Revert "Testing aes_*_xts" This reverts commit 776eeb756c70b052849323d7645622a3f1d2b76a. --- wolfcrypt/test/test.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/wolfcrypt/test/test.c b/wolfcrypt/test/test.c index d84e10717..7eacde33d 100644 --- a/wolfcrypt/test/test.c +++ b/wolfcrypt/test/test.c @@ -6039,14 +6039,6 @@ EVP_TEST_END: } #endif -#ifdef OPENSSL_EXTRA - ret = EVP_test(EVP_aes_128_xts(), key2, iv2, plain2, sizeof(plain2), - cipher2, sizeof(cipher2)); - if (ret != 0) { - return ret; - } -#endif - ret = wc_AesSetKey(&enc, key2, sizeof(key2), iv2, AES_ENCRYPTION); if (ret != 0) return -5000; @@ -6123,14 +6115,6 @@ EVP_TEST_END: } #endif -#ifdef OPENSSL_EXTRA - ret = EVP_test(EVP_aes_256_xts(), key1, iv1, plain1, sizeof(plain1), - cipher1, sizeof(cipher1)); - if (ret != 0) { - return ret; - } -#endif - ret = wc_AesSetKey(&enc, key1, sizeof(key1), iv1, AES_ENCRYPTION); if (ret != 0) return -5012;