Password Hash generate
Revision as of 14:37, 19 November 2019 by Rafahsolis (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> openssl passwd -1 </syntaxhighlight><syntaxhighlight lang="bash"> openssl passwd -1 -salt yoursalt </syntaxhighlight><syntaxhighlight lang="bash"...")
openssl passwd -1
openssl passwd -1 -salt yoursalt
echo 'joske' | openssl passwd -1 -stdin
python -c "import crypt; print crypt.crypt('joske')"