Fix handling of new config option

fixes #256
This commit is contained in:
Manuel Pégourié-Gonnard 2015-08-27 09:53:46 +02:00
parent 3a5ee1c411
commit 89789be80f
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,11 @@
mbed TLS ChangeLog (Sorted per branch, date)
= mbed TLS 1.3.13 reladsed 2015-??-??
Bugfix
* Setting SSL_MIN_DHM_BYTES in config.h had no effect (overriden in ssl.h)
(found by Fabio Solari) (#256)
= mbed TLS 1.3.12 released 2015-08-11
Security

View file

@ -287,7 +287,9 @@
* The default is 1024 bits (128 bytes) for compatibility reasons.
* From a purely security perspective, 2048 bits would be better.
*/
#if !defined(SSL_MIN_DHM_BYTES)
#define SSL_MIN_DHM_BYTES 128 /**< Min size of the Diffie-Hellman prime */
#endif
/* \} name SECTION: Module settings */
/*