Up min size of DHM params to 1024 bits
diff --git a/include/polarssl/config.h b/include/polarssl/config.h
index 10b4fb1..3a18f8a 100644
--- a/include/polarssl/config.h
+++ b/include/polarssl/config.h
@@ -1017,6 +1017,7 @@
 // SSL options
 //
 #define SSL_MAX_CONTENT_LEN             16384 /**< Size of the input / output buffer */
+#define SSL_MIN_DHM_BYTES                 128 /**< Min size of the Diffie-Hellman prime */
 
 // X509 options
 //
diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h
index 14ec0fd..e6cc2ad 100644
--- a/include/polarssl/ssl.h
+++ b/include/polarssl/ssl.h
@@ -130,6 +130,7 @@
  */
 #if !defined(POLARSSL_CONFIG_OPTIONS)
 #define SSL_MAX_CONTENT_LEN         16384   /**< Size of the input / output buffer */
+#define SSL_MIN_DHM_BYTES             128   /**< Min size of the Diffie-Hellman prime */
 #endif /* !POLARSSL_CONFIG_OPTIONS */
 
 /*