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
4f32cc6c
Commit
4f32cc6c
authored
May 16, 2012
by
Chong Yidong
Browse files
* net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
parent
ccbf309c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/net/gnutls.el
lisp/net/gnutls.el
+7
-3
No files found.
lisp/ChangeLog
View file @
4f32cc6c
2012-05-16 Chong Yidong <cyd@gnu.org>
* net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
2012-05-15 Chong Yidong <cyd@gnu.org>
* help.el (describe-mode): Doc fix.
...
...
lisp/net/gnutls.el
View file @
4f32cc6c
...
...
@@ -67,9 +67,13 @@ The files may not exist, in which case they will be ignored."
;;;###autoload
(
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.
;; Several mail servers send fewer bits than the GnuTLS default.
;; Currently, 256 appears to be a reasonable choice (Bug#11267).
"Minimum number of prime bits accepted by GnuTLS for key exchange.
During a Diffie-Hellman handshake, if the server sends a prime
number with fewer than this number of bits, the handshake is
rejected. \(The smaller the prime number, the less secure the
key exchange is against man-in-the-middle attacks.)
A value of nil says to use the default GnuTLS value."
:type
'
(
choice
(
const
:tag
"Use default value"
nil
)
...
...
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