summaryrefslogtreecommitdiff
path: root/test/recipes/90-test_ige.t
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-12-05 17:09:49 +0000
committerMatt Caswell <matt@openssl.org>2020-01-06 15:09:57 +0000
commitc72fa2554f5adc03bcc3c6e4ebcd1929e70efed4 (patch)
tree181157c82b41fb40f46ada0f30d33468df50aefb /test/recipes/90-test_ige.t
parent2852c672a8ecb02a74d0adeeb93c661b7d2d7511 (diff)
downloadopenssl-new-c72fa2554f5adc03bcc3c6e4ebcd1929e70efed4.tar.gz
Deprecate the low level AES functions
Use of the low level AES functions has been informally discouraged for a long time. We now formally deprecate them. Applications should instead use the EVP APIs, e.g. EVP_EncryptInit_ex, EVP_EncryptUpdate, EVP_EncryptFinal_ex, and the equivalently named decrypt functions. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10580)
Diffstat (limited to 'test/recipes/90-test_ige.t')
-rw-r--r--test/recipes/90-test_ige.t11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/recipes/90-test_ige.t b/test/recipes/90-test_ige.t
index ea45549c54..fc22df71b4 100644
--- a/test/recipes/90-test_ige.t
+++ b/test/recipes/90-test_ige.t
@@ -7,6 +7,17 @@
# https://www.openssl.org/source/license.html
+use strict;
+use warnings;
+
use OpenSSL::Test::Simple;
+use OpenSSL::Test;
+use OpenSSL::Test::Utils;
+
+setup("test_ige");
+
+plan skip_all => "AES_ige support is disabled in this build"
+ if disabled("deprecated")
+ && (!defined config("api") || config("api") >= 30000);
simple_test("test_ige", "igetest");