aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/actions/pwgen
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-05-30 14:45:12 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-05-30 14:45:12 -0300
commite5659e2ba6be675f2f8383e0264bde8968a869d0 (patch)
treecbc92bdb8e2f46aa6e79b74f621bddafebf7f990 /lib/keyringer/actions/pwgen
parentb6dec4f1efe948f01df02b364cbb7f7aeedaa2b1 (diff)
parent126eb39671e9c65c0c60a78b25189e4d4b1fae72 (diff)
downloadkeyringer-e5659e2ba6be675f2f8383e0264bde8968a869d0.tar.gz
keyringer-e5659e2ba6be675f2f8383e0264bde8968a869d0.tar.bz2
Merge branch 'develop'
Diffstat (limited to 'lib/keyringer/actions/pwgen')
-rwxr-xr-xlib/keyringer/actions/pwgen4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/keyringer/actions/pwgen b/lib/keyringer/actions/pwgen
index 3c03681..e1e8947 100755
--- a/lib/keyringer/actions/pwgen
+++ b/lib/keyringer/actions/pwgen
@@ -13,12 +13,12 @@ FILE="$2"
# Generates a random passphrase
function keyringer_pwgen {
- ENTROPY_BYTES=${1:-20} # in bytes
+ ENTROPY_BYTES=${1:-40} # in bytes
ENTROPY_SOURCE="${ENTROPY_SOURCE:-/dev/urandom}"
# Strip possible newlines if output is wrapped.
# Also strip trailing = signs as they add nothing to the password's entropy.
- head -c $ENTROPY_BYTES $ENTROPY_SOURCE | base64 | tr -d '\n='
+ dd bs=1 count=$ENTROPY_BYTES if=$ENTROPY_SOURCE status=none | base64 | tr -d '\n='
echo
}