From: Matt Caswell Date: Thu, 5 Dec 2019 17:09:49 +0000 (+0000) Subject: Deprecate the low level AES functions X-Git-Tag: openssl-3.0.0-alpha1~737 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c72fa2554f5adc03bcc3c6e4ebcd1929e70efed4;hp=c72fa2554f5adc03bcc3c6e4ebcd1929e70efed4;p=oweals%2Fopenssl.git Deprecate the low level AES functions Use of the low level AES 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/10580) ---