]> git.scottworley.com Git - overonion/blobdiff - overonion-make-key
Add an operation field to each line.
[overonion] / overonion-make-key
index da564ad39227896970b3093a29e75c06ac369ae6..ff094721f5e03a1a82418c48111c1419e701936a 100755 (executable)
@@ -36,6 +36,6 @@ fi
 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