March 6, 2006
Quick OpenSSL Tip
here is how I create random passwords.
head -c 8 /dev/random > /tmp/xxx
openssl enc -base64 -in /tmp/xxx | head -c 8
is there a better way?
Filed by huw at 6:09 pm under SysAdmin
2 Comments
here is how I create random passwords.
head -c 8 /dev/random > /tmp/xxx
openssl enc -base64 -in /tmp/xxx | head -c 8
is there a better way?
Filed by huw at 6:09 pm under SysAdmin
2 Comments