]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
reduced the very weak DH level to 768 bits to not reject popular sites that operate...
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 9 Feb 2013 18:11:10 +0000 (19:11 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 9 Feb 2013 18:11:10 +0000 (19:11 +0100)
lib/algorithms/secparams.c

index 7f010f1c7e23b665a5e7ed58bab0f5b45d59836e..6bc28d12a6f5b31603c93f03a2bd120e54fc027d 100644 (file)
@@ -41,7 +41,7 @@ typedef struct
 static const gnutls_sec_params_entry sec_params[] = {
   {"Insecure", GNUTLS_SEC_PARAM_INSECURE, 0, 0, 0, 0, 0},
   {"Export", GNUTLS_SEC_PARAM_EXPORT, 42, 512, 0, 0, 0},
-  {"Very weak", GNUTLS_SEC_PARAM_VERY_WEAK, 64, 816, 0, 0, 0},
+  {"Very weak", GNUTLS_SEC_PARAM_VERY_WEAK, 64, 768, 0, 0, 0},
   {"Weak", GNUTLS_SEC_PARAM_WEAK, 72, 1008, 1024, 160, 160},
   {"Low", GNUTLS_SEC_PARAM_LOW, 80, 1248, 2048, 160, 160}, 
   {"Legacy", GNUTLS_SEC_PARAM_LEGACY, 96, 1776, 2048, 192, 192},