diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-12-26 21:22:42 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-12-26 21:57:31 +0100 |
commit | a14821d61511b53acb70c56765e71ff283b3e230 (patch) | |
tree | 511a5d059eb0b4838d4d39d5c90e6516817d6d45 /lisp/net | |
parent | b14bbd108e4bc43f8c7995dfff4c2c59c78f1b5f (diff) | |
download | emacs-a14821d61511b53acb70c56765e71ff283b3e230.tar.gz emacs-a14821d61511b53acb70c56765e71ff283b3e230.tar.bz2 emacs-a14821d61511b53acb70c56765e71ff283b3e230.zip |
Improve gnutls-min-prime-bits docstring
* lisp/net/gnutls.el (gnutls-min-prime-bits): Doc fix: delete
out-of-date and now misleading sentence, added back when Emacs'
default minimum prime bits for a Diffie-Hellman handshake was only 256
bits. These days, the default is nil, which means to let GnuTLS
decide the value. (See also `nsm-protocol-check--dhe-prime-kx`.)
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/gnutls.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el index 6e3845aec1a..9f14df08a79 100644 --- a/lisp/net/gnutls.el +++ b/lisp/net/gnutls.el @@ -128,10 +128,7 @@ key exchange is against man-in-the-middle attacks.) A value of nil says to use the default GnuTLS value. -The default value of this variable is such that virtually any -connection can be established, whether this connection can be -considered cryptographically \"safe\" or not. However, Emacs -network security is handled at a higher level via +Emacs network security is handled at a higher level via `open-network-stream' and the Network Security Manager. See Info node `(emacs) Network Security'." :type '(choice (const :tag "Use default value" nil) |