Fix completion of cipher algorithms

This commit is contained in:
Gianluca Recchia 2021-01-03 16:31:19 +01:00
parent 9def41ae64
commit 17d92b0a8e
No known key found for this signature in database
GPG Key ID: 3C2B4128D9A1F218
1 changed files with 3 additions and 1 deletions

View File

@ -611,7 +611,9 @@ _openssl_gendsa() {
_openssl_genpkey() {
# written for openssl 1.0.1k
local ciphers cipher_opts
ciphers=( ${$(openssl list-cipher-algorithms | cut -d' ' -f1)} )
if ! ciphers=( ${$(openssl list-cipher-algorithms | cut -d' ' -f1)} ) 2>/dev/null ; then
ciphers=( ${$(openssl list -cipher-algorithms | cut -d' ' -f1)} )
fi
cipher_opts=()
for alg in ${ciphers}; do
cipher_opts=(${cipher_opts} "(${${(l:32:: ::-:)ciphers[@]}// / })-${alg}[use this cipher to encrypt the key]")