diff options
author | Pauli <paul.dale@oracle.com> | 2020-01-14 03:11:50 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-01-29 10:49:23 +0100 |
commit | dbde4726889a19af0a718fe9c5542f39c81acbd3 (patch) | |
tree | 371afa179289e0ba48e5a5c99520b139fd0f325f /test/build.info | |
parent | hmac: preprocessor indentation fixes (diff) | |
download | openssl-dbde4726889a19af0a718fe9c5542f39c81acbd3.tar.xz openssl-dbde4726889a19af0a718fe9c5542f39c81acbd3.zip |
Deprecate the low level HMAC functions
Use of the low level HMAC functions has been informally discouraged for a
long time. We now formally deprecate them.
Applications should instead use EVP_MAC_CTX_new(3), EVP_MAC_CTX_free(3),
EVP_MAC_init(3), EVP_MAC_update(3) and EVP_MAC_final(3).
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10836)
Diffstat (limited to 'test/build.info')
-rw-r--r-- | test/build.info | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/test/build.info b/test/build.info index 7803488d57..7ae7e8f6a7 100644 --- a/test/build.info +++ b/test/build.info @@ -33,7 +33,6 @@ IF[{- !$disabled{tests} -}] aborttest test_test \ sanitytest rsa_complex exdatatest bntest \ ectest ecstresstest ecdsatest gmdifftest pbelutest \ - hmactest \ destest mdc2test \ dhtest enginetest \ ssltest_old dsatest dsa_no_digest_size_test exptest rsa_test \ @@ -110,10 +109,6 @@ IF[{- !$disabled{tests} -}] INCLUDE[pbelutest]=../include ../apps/include DEPEND[pbelutest]=../libcrypto libtestutil.a - SOURCE[hmactest]=hmactest.c - INCLUDE[hmactest]=../include ../apps/include - DEPEND[hmactest]=../libcrypto libtestutil.a - SOURCE[mdc2test]=mdc2test.c INCLUDE[mdc2test]=../include ../apps/include DEPEND[mdc2test]=../libcrypto libtestutil.a @@ -499,7 +494,7 @@ IF[{- !$disabled{tests} -}] tls13encryptiontest wpackettest ctype_internal_test \ rdrand_sanitytest property_test ideatest \ rsa_sp800_56b_test bn_internal_test \ - rc2test rc4test rc5test \ + rc2test rc4test rc5test hmactest \ asn1_dsa_internal_test IF[{- !$disabled{poly1305} -}] @@ -565,6 +560,10 @@ IF[{- !$disabled{tests} -}] INCLUDE[sparse_array_test]=../crypto/include ../include ../apps/include DEPEND[sparse_array_test]=../libcrypto.a libtestutil.a + SOURCE[hmactest]=hmactest.c + INCLUDE[hmactest]=../include ../apps/include + DEPEND[hmactest]=../libcrypto.a libtestutil.a + SOURCE[siphash_internal_test]=siphash_internal_test.c INCLUDE[siphash_internal_test]=.. ../include ../apps/include ../crypto/include DEPEND[siphash_internal_test]=../libcrypto.a libtestutil.a |