mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-08 10:25:37 +00:00
Align ChangeLog entry with 2.7
This commit is contained in:
parent
31b37f6edd
commit
681f5aacfe
10
ChangeLog
10
ChangeLog
|
@ -20,11 +20,6 @@ Features
|
||||||
heavily-loaded machine.
|
heavily-loaded machine.
|
||||||
|
|
||||||
Bugfix
|
Bugfix
|
||||||
* Properly initialize and free SHA-256 / SHA-512 context in entropy module
|
|
||||||
instead of performing zeroization only. This could lead to failure for
|
|
||||||
alternative implementations of SHA-256 / SHA-512 for which zeroization
|
|
||||||
of contexts is not a proper way of initialization.
|
|
||||||
Found and fix suggested by ccli8.
|
|
||||||
* Fix ssl_parse_record_header() to silently discard invalid DTLS records
|
* Fix ssl_parse_record_header() to silently discard invalid DTLS records
|
||||||
as recommended in RFC 6347 Section 4.1.2.7.
|
as recommended in RFC 6347 Section 4.1.2.7.
|
||||||
* Fix memory leak in mbedtls_ssl_set_hostname() when called multiple times.
|
* Fix memory leak in mbedtls_ssl_set_hostname() when called multiple times.
|
||||||
|
@ -67,6 +62,11 @@ Bugfix
|
||||||
* Fix issue in RSA key generation program programs/x509/rsa_genkey
|
* Fix issue in RSA key generation program programs/x509/rsa_genkey
|
||||||
where the failure of CTR DRBG initialization lead to freeing an
|
where the failure of CTR DRBG initialization lead to freeing an
|
||||||
RSA context without proper initialization beforehand.
|
RSA context without proper initialization beforehand.
|
||||||
|
* Fix the entropy.c module to ensure that mbedtls_sha256_init() or
|
||||||
|
mbedtls_sha512_init() is called before operating on the relevant context
|
||||||
|
structure. Do not assume that zeroizing a context is a correct way to
|
||||||
|
reset it. Found independently by ccli8 on Github.
|
||||||
|
* In mbedtls_entropy_free(), properly free the message digest context.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Extend cert_write example program by options to set the CRT version
|
* Extend cert_write example program by options to set the CRT version
|
||||||
|
|
Loading…
Reference in a new issue