From 9c967e7298cc4f0e6acbaf9b13755d674d9d460c Mon Sep 17 00:00:00 2001 From: Arik Mitschang Date: Tue, 4 Aug 2020 20:32:13 +0200 Subject: [PATCH] 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 --- lisp/gnus/smime.el | 3 +++ 1 file changed, 3 insertions(+) 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")) -- 2.39.2