diff options
author | Matt Caswell <matt@openssl.org> | 2020-01-02 14:25:27 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-01-08 11:25:25 +0000 |
commit | 03047e7b7f64b054fa85d101e7097af5daf7a865 (patch) | |
tree | 38c18f72c1a38605c1dcf885d8b25df45e161ef8 /test/bftest.c | |
parent | 339638b586e77c189e8294f931b99b03d1f08dbd (diff) | |
download | openssl-new-03047e7b7f64b054fa85d101e7097af5daf7a865.tar.gz |
Deprecate Low Level Blowfish APIs
Applications should instead use the higher level EVP APIs, e.g.
EVP_Encrypt*() and EVP_Decrypt*().
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/10740)
Diffstat (limited to 'test/bftest.c')
-rw-r--r-- | test/bftest.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/bftest.c b/test/bftest.c index 5b489251c0..f350ce7f58 100644 --- a/test/bftest.c +++ b/test/bftest.c @@ -8,9 +8,10 @@ */ /* - * This has been a quickly hacked 'ideatest.c'. When I add tests for other - * RC2 modes, more of the code will be uncommented. + * BF low level APIs are deprecated for public use, but still ok for internal + * use. */ +#include "internal/deprecated.h" #include <stdio.h> #include <string.h> |