diff options
author | Nicola Tuveri <nic.tuv@gmail.com> | 2022-12-14 00:55:49 +0100 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-01-31 01:08:31 +0100 |
commit | f66c1272f92bed6bc8aa17f6a8956d9e2e5b7798 (patch) | |
tree | ca2611da150581e7f6ba967d10a92cfb6f57095d /doc | |
parent | Fix incomplete check on X509V3_add1_i2d() (diff) | |
download | openssl-f66c1272f92bed6bc8aa17f6a8956d9e2e5b7798.tar.xz openssl-f66c1272f92bed6bc8aa17f6a8956d9e2e5b7798.zip |
[doc] Sync documentation now that 3.0 honors OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT
https://github.com/openssl/openssl/pull/19901 backported the
"Honor OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT as set and default to
UNCOMPRESSED" changeset to 3.0.
This commit updates:
- the HISTORY notes of the relevant documentation to mark the change
happened since 3.0.8.
- the `CHANGES.md file` to sync up with the tip of the `openssl-3.0`
branch
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20003)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man7/EVP_PKEY-EC.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man7/EVP_PKEY-EC.pod b/doc/man7/EVP_PKEY-EC.pod index 143ec4e82f..492d97702d 100644 --- a/doc/man7/EVP_PKEY-EC.pod +++ b/doc/man7/EVP_PKEY-EC.pod @@ -118,9 +118,9 @@ EVP_PKEY_fromdata() and EVP_PKEY_todata() functions. Note, in particular, that the choice of point compression format used for encoding the exported value via EVP_PKEY_todata() depends on the underlying provider implementation. -Before OpenSSL 3.1, the implementation of providers included with OpenSSL always +Before OpenSSL 3.0.8, the implementation of providers included with OpenSSL always opted for an encoding in compressed format, unconditionally. -Since OpenSSL 3.1, the implementation has been changed to honor the +Since OpenSSL 3.0.8, the implementation has been changed to honor the B<OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT> parameter, if set, or to default to uncompressed format. |