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 /crypto/des/cfb_enc.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 'crypto/des/cfb_enc.c')
-rw-r--r-- | crypto/des/cfb_enc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/des/cfb_enc.c b/crypto/des/cfb_enc.c index 8630cc4293..bfb5f5a186 100644 --- a/crypto/des/cfb_enc.c +++ b/crypto/des/cfb_enc.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 "e_os.h" #include "des_local.h" #include <assert.h> |