From d778dfea549bb736863c6b24b6fd1950577b0a5c Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 21 Oct 2017 17:14:18 -0700 Subject: [PATCH] Skip the sleep; rely on /dev/random to block. --- overonion-make-key | 1 - 1 file changed, 1 deletion(-) diff --git a/overonion-make-key b/overonion-make-key index 3b0289f..b909d97 100755 --- a/overonion-make-key +++ b/overonion-make-key @@ -30,7 +30,6 @@ fi i=0 while read -r cipher;do echo -n $'\r'"Generating key $((++i))/${#ciphers[*]}" - sleep 10 cat >> "$keyfile" <<< "$cipher $(head -c 99 /dev/random | base64 --wrap=0 )" done < <( IFS=$'\n'; shuf <<< "${ciphers[*]}"; ) echo -- 2.44.1