Difference between revisions of "Password Hash generate"

From RHS Wiki
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="bash"> openssl passwd -1 </syntaxhighlight><syntaxhighlight lang="bash"> openssl passwd -1 -salt yoursalt </syntaxhighlight><syntaxhighlight lang="bash"...")
Tag: visualeditor
(No difference)

Revision as of 14:37, 19 November 2019

openssl passwd -1
openssl passwd -1 -salt yoursalt
echo 'joske' | openssl passwd -1 -stdin
python -c "import crypt; print crypt.crypt('joske')"