From: Arik Mitschang Date: Tue, 4 Aug 2020 18:32:13 +0000 (+0200) Subject: Add options for mode modern ciphers in smime-encrypt-cipher X-Git-Tag: emacs-28.0.90~6820 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9c967e7298cc4f0e6acbaf9b13755d674d9d460c;p=emacs.git Add options for mode modern ciphers in smime-encrypt-cipher * lisp/gnus/smime.el (smime-encrypt-cipher): Add support for more modern ciphers (bug#8474). Copyright-paperwork-exempt: yes --- diff --git a/lisp/gnus/smime.el b/lisp/gnus/smime.el index fe6daf6b037..5500148e518 100644 --- a/lisp/gnus/smime.el +++ b/lisp/gnus/smime.el @@ -185,6 +185,9 @@ and the files themselves should be in PEM format." :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"))