summaryrefslogtreecommitdiffstats
path: root/test/build.info
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-13 13:02:45 +1000
committerPauli <paul.dale@oracle.com>2020-01-19 10:38:49 +1000
commitda2d32f6db1c9fb33478af660daddcd1df369716 (patch)
treee35e8b89a18319fd8444d16a4fe5adad216fb8bc /test/build.info
parent621f74b3e3eeaa189c9d83dca7352612774ad23c (diff)
Deprecate the low level IDEA functions.
Use of the low level IDEA 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: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10819)
Diffstat (limited to 'test/build.info')
-rw-r--r--test/build.info12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/build.info b/test/build.info
index 837dbba934..cf03ce4c1a 100644
--- a/test/build.info
+++ b/test/build.info
@@ -32,7 +32,7 @@ IF[{- !$disabled{tests} -}]
versions \
aborttest test_test \
sanitytest rsa_complex exdatatest bntest \
- ectest ecstresstest ecdsatest gmdifftest pbelutest ideatest \
+ ectest ecstresstest ecdsatest gmdifftest pbelutest \
hmactest \
destest mdc2test \
dhtest enginetest \
@@ -110,10 +110,6 @@ IF[{- !$disabled{tests} -}]
INCLUDE[pbelutest]=../include ../apps/include
DEPEND[pbelutest]=../libcrypto libtestutil.a
- SOURCE[ideatest]=ideatest.c
- INCLUDE[ideatest]=../include ../apps/include
- DEPEND[ideatest]=../libcrypto libtestutil.a
-
SOURCE[hmactest]=hmactest.c
INCLUDE[hmactest]=../include ../apps/include
DEPEND[hmactest]=../libcrypto libtestutil.a
@@ -505,7 +501,7 @@ IF[{- !$disabled{tests} -}]
IF[1]
PROGRAMS{noinst}=asn1_internal_test modes_internal_test x509_internal_test \
tls13encryptiontest wpackettest ctype_internal_test \
- rdrand_sanitytest property_test \
+ rdrand_sanitytest property_test ideatest \
rsa_sp800_56b_test bn_internal_test \
rc2test rc4test rc5test \
asn1_dsa_internal_test
@@ -553,6 +549,10 @@ IF[{- !$disabled{tests} -}]
INCLUDE[tls13encryptiontest]=.. ../include ../apps/include
DEPEND[tls13encryptiontest]=../libcrypto ../libssl.a libtestutil.a
+ SOURCE[ideatest]=ideatest.c
+ INCLUDE[ideatest]=../include ../apps/include
+ DEPEND[ideatest]=../libcrypto.a libtestutil.a
+
SOURCE[wpackettest]=wpackettest.c
INCLUDE[wpackettest]=../include ../apps/include
DEPEND[wpackettest]=../libcrypto ../libssl.a libtestutil.a