diff options
author | Pauli <paul.dale@oracle.com> | 2020-01-16 04:50:03 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-01-25 00:30:59 +0100 |
commit | c6fec81b88131d08c1022504ccf6effa95497afb (patch) | |
tree | 8f9875a9f3a83fa13c6404faa8b7fa71f2c1f6f6 /test/destest.c | |
parent | des: fix header file preprocessor indentation (diff) | |
download | openssl-c6fec81b88131d08c1022504ccf6effa95497afb.tar.xz openssl-c6fec81b88131d08c1022504ccf6effa95497afb.zip |
Deprecate the low level DES functions.
Use of the low level DES 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/10858)
Diffstat (limited to 'test/destest.c')
-rw-r--r-- | test/destest.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/destest.c b/test/destest.c index fe56d9a76b..648bd3521d 100644 --- a/test/destest.c +++ b/test/destest.c @@ -7,6 +7,12 @@ * https://www.openssl.org/source/license.html */ +/* + * DES low level APIs are deprecated for public use, but still ok for internal + * use. + */ +#include "internal/deprecated.h" + #include <openssl/e_os2.h> #include <string.h> |