From: Nikos Mavrogiannopoulos Date: Sat, 9 Feb 2013 18:11:10 +0000 (+0100) Subject: reduced the very weak DH level to 768 bits to not reject popular sites that operate... X-Git-Tag: gnutls_3_1_8~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=769ac9f7c59bc5440de21f88d8f16df44dcd969d;p=thirdparty%2Fgnutls.git reduced the very weak DH level to 768 bits to not reject popular sites that operate on that level. --- diff --git a/lib/algorithms/secparams.c b/lib/algorithms/secparams.c index 7f010f1c7e..6bc28d12a6 100644 --- a/lib/algorithms/secparams.c +++ b/lib/algorithms/secparams.c @@ -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},