i=0
while read -r cipher;do
echo -n $'\r'"Generating key $((++i))/${#ciphers[*]}" >&2
- cat >> "$keyfile" <<< "$cipher $(head -c 99 "$random_source" | base64 --wrap=0 )"
+ cat >> "$keyfile" <<< "openssl-enc $cipher $(head -c 99 "$random_source" | base64 --wrap=0 )"
done < <( IFS=$'\n'; shuf <<< "${ciphers[*]}"; )
echo >&2