Merge branch 'mbedtls-1.3'

This commit is contained in:
Simon Butcher 2017-02-25 21:47:24 +00:00
commit 13f9e40059

View File

@ -1,6 +1,6 @@
mbed TLS ChangeLog (Sorted per branch, date)
= mbed TLS x.x.x branch released xxxx-xx-xx
= mbed TLS 1.3.x branch released xxxx-xx-xx
Security
* Add checks to prevent signature forgeries for very large messages while
@ -10,6 +10,9 @@ Security
pk_sign(). Found by Jean-Philippe Aumasson.
Bugfix
* Fixed multiple buffer overreads in mbedtls_pem_read_buffer() when parsing
the input string in PEM format to extract the different components. Found
by Eyal Itkin.
* Fix unused variable/function compilation warnings in pem.c and x509_csr.c
that are reported when building mbed TLS with a config.h that does not
define POLARSSL_PEM_PARSE_C. Found by omnium21. #562