Revert "Testing aes_*_xts"

This reverts commit 776eeb756c70b052849323d7645622a3f1d2b76a.
This commit is contained in:
Eric Blankenhorn
2020-01-28 10:45:31 -06:00
parent 3197d67e62
commit 16ce670897

View File

@@ -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;