summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-01-11 00:04:56 +0100
committerRichard Levitte <levitte@openssl.org>2020-01-25 13:16:09 +0100
commit9420b403b72ecd74f55804f494346c926aa609c9 (patch)
treec3c8ee361a7fb4f02f8a6d6727de226938743f59 /CHANGES
parent3472082b4b6d73e0803a7c47f03e96ec0a69f77b (diff)
downloadopenssl-new-9420b403b72ecd74f55804f494346c926aa609c9.tar.gz
EVP: Adapt EVP_PKEY Seal and Open for provider keys
This affects the following function, which can now deal with provider side keys: - EVP_SealInit() - EVP_OpenInit() Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/10808)
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 2b281f8da9..d64163d4e0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -9,6 +9,12 @@
Changes between 1.1.1 and 3.0.0 [xx XXX xxxx]
+ *) Deprecated EVP_PKEY_decrypt_old(), please use EVP_PKEY_decrypt_init()
+ and EVP_PKEY_decrypt() instead.
+ Deprecated EVP_PKEY_encrypt_old(), please use EVP_PKEY_encrypt_init()
+ and EVP_PKEY_encrypt() instead.
+ [Richard Levitte]
+
*) Enhanced the documentation of EVP_PKEY_size(), EVP_PKEY_bits()
and EVP_PKEY_security_bits(). Especially EVP_PKEY_size() needed
a new formulation to include all the things it can be used for,