Add a few more things

This commit is contained in:
Bob Beck 2022-12-09 10:42:36 -07:00
parent f90967d04b
commit 202d12ca6d

View File

@ -33,7 +33,7 @@ LibreSSL Portable Release Notes:
* Internal improvements * Internal improvements
- Remove dependency on system timegm() and gmtime() by replacing - Remove dependency on system timegm() and gmtime() by replacing
traditional Julian date conversion with POSIX epoch-seconds date traditional Julian date conversion with POSIX epoch-seconds date
conversion from BoringSSL. conversion from BoringSSL
- Clean old and unused BN code dealing with primes. - Clean old and unused BN code dealing with primes.
- Start rewriting name constraints code using CBS. - Start rewriting name constraints code using CBS.
- Remove support for the HMAC PRIVATE KEY. - Remove support for the HMAC PRIVATE KEY.
@ -46,6 +46,7 @@ LibreSSL Portable Release Notes:
- BIO_read() and BIO_write() now behave more closely to OpenSSL 3 in - BIO_read() and BIO_write() now behave more closely to OpenSSL 3 in
various corner cases. More work is needed here. various corner cases. More work is needed here.
* Bug fixes * Bug fixes
- Make BIO_push(3) fail if a call would result in a cycle
- Add EVP_chacha20_poly1305() to the list of all ciphers. - Add EVP_chacha20_poly1305() to the list of all ciphers.
- Fix potential leaks of EVP_PKEY in various printing functions - Fix potential leaks of EVP_PKEY in various printing functions
- Fix potential leak in OBJ_NAME_add(). - Fix potential leak in OBJ_NAME_add().
@ -57,6 +58,7 @@ LibreSSL Portable Release Notes:
in the process of generating certificates. in the process of generating certificates.
- Fixed a variety of memory corruption issues in BIO chains coming - Fixed a variety of memory corruption issues in BIO chains coming
from poor old and new API: BIO_push(), BIO_pop(), BIO_set_next(). from poor old and new API: BIO_push(), BIO_pop(), BIO_set_next().
- Avoid potential divide by zero in BIO_dump_indent_cb()
* Documentation improvements * Documentation improvements
- Numerous improvements and additions for ASN.1, BIO, BN, and X.509. - Numerous improvements and additions for ASN.1, BIO, BN, and X.509.
- The BN documentation is now considered to be complete. - The BN documentation is now considered to be complete.