]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/gnutls.el (gnutls-min-prime-bits): Default to 256.
authorChong Yidong <cyd@gnu.org>
Tue, 15 May 2012 15:16:13 +0000 (23:16 +0800)
committerChong Yidong <cyd@gnu.org>
Tue, 15 May 2012 15:16:13 +0000 (23:16 +0800)
Fixes: debbugs:11267
lisp/ChangeLog
lisp/net/gnutls.el

index 93127c437839b182424befcebe6180369ce42095..d6c5b0e9886c163f05659e80e02f39f161f94955 100644 (file)
@@ -1,3 +1,7 @@
+2012-05-15  Chong Yidong  <cyd@gnu.org>
+
+       * net/gnutls.el (gnutls-min-prime-bits): Default to 256 (Bug#11267).
+
 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
 
        * progmodes/compile.el (compilation-internal-error-properties):
index 1bc319c796e7759dba8ce163dd3a87c19924a6b6..92400730f56b8d8a32956685f0f7c848bb8e8fbf 100644 (file)
@@ -66,14 +66,12 @@ The files may not exist, in which case they will be ignored."
                  (repeat (file :tag "Bundle filename"))))
 
 ;;;###autoload
-(defcustom gnutls-min-prime-bits nil
-  "The minimum number of bits to be used in Diffie-Hellman key exchange.
+(defcustom gnutls-min-prime-bits 256
+  "Minimum number of bits to be used in Diffie-Hellman key exchange.
+During a client-server handshake, if the server sends a prime
+with fewer than this number of bits, the handshake will fail.
 
-This sets the minimum accepted size of the key to be used in a
-client-server handshake.  If the server sends a prime with fewer than
-the specified number of bits the handshake will fail.
-
-A value of nil says to use the default gnutls value."
+A value of nil says to use the default GnuTLS value."
   :type '(choice (const :tag "Use default value" nil)
                  (integer :tag "Number of bits" 512))
   :group 'gnutls)