Variable: smime-encrypt-cipher

smime-encrypt-cipher is a customizable variable defined in smime.el.gz.

Value

"-des3"

Documentation

Cipher algorithm used for encryption.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/smime.el.gz
;; OpenSSL option to select the encryption cipher

(defcustom smime-encrypt-cipher "-des3"
  "Cipher algorithm used for encryption."
  :version "22.1"
  :type '(choice (const :tag "Triple DES" "-des3")
		 (const :tag "DES"  "-des")
		 (const :tag "AES 256 bits" "-aes256")
		 (const :tag "AES 192 bits" "-aes192")
		 (const :tag "AES 128 bits" "-aes128")
		 (const :tag "RC2 40 bits" "-rc2-40")
		 (const :tag "RC2 64 bits" "-rc2-64")
		 (const :tag "RC2 128 bits" "-rc2-128")))