Variable: gnutls-algorithm-priority

gnutls-algorithm-priority is a customizable variable defined in gnutls.el.gz.

Value

nil

Documentation

If non-nil, this should be a TLS priority string.

For instance, if you want to skip the "dhe-rsa" algorithm, set this variable to "normal:-dhe-rsa".

This variable can be useful for modifying low-level TLS connection parameters (for instance if you need to connect to a host that only accepts a specific algorithm). However, in general, Emacs network security is handled by the Network Security Manager (NSM), and the default value of nil delegates the job of checking the connection security to the NSM. See Info node (emacs) Network Security.

Source Code

;; Defined in /usr/src/emacs/lisp/net/gnutls.el.gz
(defcustom gnutls-algorithm-priority nil
  "If non-nil, this should be a TLS priority string.
For instance, if you want to skip the \"dhe-rsa\" algorithm,
set this variable to \"normal:-dhe-rsa\".

This variable can be useful for modifying low-level TLS
connection parameters (for instance if you need to connect to a
host that only accepts a specific algorithm).  However, in
general, Emacs network security is handled by the Network
Security Manager (NSM), and the default value of nil delegates
the job of checking the connection security to the NSM.
See Info node `(emacs) Network Security'."
  :type '(choice (const nil)
                 string))