diff options
author | Ijtaba Hussain <ijtabahussain@live.com> | 2023-06-09 08:04:53 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-02-21 10:28:17 +0100 |
commit | ffc853bcb5f431d57b8a24dd062ff76d52891e63 (patch) | |
tree | 2e3f884536c6d23fb114bbe255ba39600fe5dac5 /CHANGES.md | |
parent | Future proof RLAYER_USE_EXPLICIT_IV by checking dtls versions directly. (diff) | |
download | openssl-ffc853bcb5f431d57b8a24dd062ff76d52891e63.tar.xz openssl-ffc853bcb5f431d57b8a24dd062ff76d52891e63.zip |
Extended SSL_SESSION functions using time_t
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21206)
Diffstat (limited to 'CHANGES.md')
-rw-r--r-- | CHANGES.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md index ee06c06c2e..49bb7671b4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -28,6 +28,12 @@ OpenSSL 3.3 ### Changes between 3.2 and 3.3 [xx XXX xxxx] + * Added API functions SSL_SESSION_get_time_ex(), SSL_SESSION_set_time_ex() + using time_t which is Y2038 safe on 32 bit systems when 64 bit time + is enabled (e.g via setting glibc macro _TIME_BITS=64). + + *Ijtaba Hussain* + * The EVP_PKEY_fromdata function has been augmented to allow for the derivation of CRT (Chinese Remainder Theorem) parameters when requested. See the OSSL_PKEY_PARAM_RSA_DERIVE_FROM_PQ param in the EVP_PKEY-RSA documentation. |