d9037869e57236e6979bcf98aa599e54533172fa
d9037869e57236e6979bcf98aa599e54533172fa
qpiJkiXHy5ish6Sx
qpiJkiXHy5ish6Sx
What hash is that?
What hash is that?
It's just a 16 character alphanumeric 'random' output of this little thing I use to make users hideous passwords with:
genpasswd() { local l=$1 [ "$l" == "" ] && l=16 tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs }
It's just a 16 character alphanumeric 'random' output of this little thing I use to make users hideous passwords with:
genpasswd() {
local l=$1
[ "$l" == "" ] && l=16
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
}
(post is archived)