Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
fcf2993f
Commit
fcf2993f
authored
May 15, 2012
by
Chong Yidong
Browse files
* net/gnutls.el (gnutls-min-prime-bits): Default to 256.
Fixes: debbugs:11267
parent
0b128ac4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/net/gnutls.el
lisp/net/gnutls.el
+5
-7
No files found.
lisp/ChangeLog
View file @
fcf2993f
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):
...
...
lisp/net/gnutls.el
View file @
fcf2993f
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment