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/des/ofb64ede.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crypto/des/ofb64ede.c') diff --git a/crypto/des/ofb64ede.c b/crypto/des/ofb64ede.c index 284224df6c..80fb9d164a 100644 --- a/crypto/des/ofb64ede.c +++ b/crypto/des/ofb64ede.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 "des_local.h" /* -- cgit v1.2.3