mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 06:45:36 +00:00
parent
0aaefcebc0
commit
c094a97223
|
@ -5,6 +5,9 @@ mbed TLS ChangeLog (Sorted per branch, date)
|
||||||
Bugfix
|
Bugfix
|
||||||
* Fix bug causing some handshakes to fail due to some non-fatal alerts not
|
* Fix bug causing some handshakes to fail due to some non-fatal alerts not
|
||||||
begin properly ignored. Found by mancha and Kasom Koht-arsa, #308
|
begin properly ignored. Found by mancha and Kasom Koht-arsa, #308
|
||||||
|
* Fix build error with configurations where ECDHE-PSK is the only key
|
||||||
|
exchange. Found and fix provided by Chris Hammond. #270
|
||||||
|
|
||||||
|
|
||||||
= mbed TLS 1.3.14 released 2015-10-06
|
= mbed TLS 1.3.14 released 2015-10-06
|
||||||
|
|
||||||
|
|
|
@ -252,7 +252,6 @@ typedef enum {
|
||||||
defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
|
||||||
defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
|
||||||
defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED) || \
|
defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED) || \
|
||||||
defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED) || \
|
|
||||||
defined(POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
|
defined(POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
|
||||||
defined(POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
|
defined(POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED)
|
||||||
#define POLARSSL_KEY_EXCHANGE__WITH_CERT__ENABLED
|
#define POLARSSL_KEY_EXCHANGE__WITH_CERT__ENABLED
|
||||||
|
|
Loading…
Reference in a new issue