diff options
author | Pauli <paul.dale@oracle.com> | 2020-03-24 06:08:00 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-03-28 03:27:22 +0100 |
commit | be19d3caf0724b786ecc97ec4207c07cff63c745 (patch) | |
tree | 6bf6b9a8bc9b9f8550ed883109335bcd55f7fd76 /CHANGES.md | |
parent | Param builder: make the OSSL_PARAM_BLD APIs public. (diff) | |
download | openssl-be19d3caf0724b786ecc97ec4207c07cff63c745.tar.xz openssl-be19d3caf0724b786ecc97ec4207c07cff63c745.zip |
NEWS: note OSSL_PARAM_BLD API as public.
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/11390)
Diffstat (limited to 'CHANGES.md')
-rw-r--r-- | CHANGES.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md index 82c186a6cd..8f7d7ee195 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -24,6 +24,14 @@ OpenSSL 3.0 ### Changes between 1.1.1 and 3.0 [xx XXX xxxx] ### + * Added OSSL_PARAM_BLD to the public interface. This allows OSSL_PARAM + arrays to be more easily constructed via a series of utility functions. + Create a parameter builder using OSSL_PARAM_BLD_new(), add parameters using + the various push functions and finally convert to a passable OSSL_PARAM + array using OSSL_PARAM_BLD_to_param(). + + * Paul Dale * + * EVP_PKEY_get0_RSA(), EVP_PKEY_get0_DSA(), EVP_PKEY_get0_DH(), and EVP_PKEY_get0_EC_KEY() can now handle EVP_PKEYs with provider side internal keys, if they correspond to one of those built in types. |