From c6fec81b88131d08c1022504ccf6effa95497afb Mon Sep 17 00:00:00 2001 From: Pauli Date: Thu, 16 Jan 2020 13:50:03 +1000 Subject: 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 (Merged from https://github.com/openssl/openssl/pull/10858) --- crypto/evp/e_des.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crypto/evp/e_des.c') diff --git a/crypto/evp/e_des.c b/crypto/evp/e_des.c index e5791f3..a72ba85 100644 --- a/crypto/evp/e_des.c +++ b/crypto/evp/e_des.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 #include "internal/cryptlib.h" #ifndef OPENSSL_NO_DES -- cgit v1.1