Funktion zum Erzeugen eines Hashes (module passlib needed):
python -c "from passlib.hash import sha512_crypt;import getpass;print sha512_crypt.encrypt(getpass.getpass())"
Wenn das Modul passlib fehlt:
pip install passlib
Funktion zum Erzeugen eines Hashes (module passlib needed):
python -c "from passlib.hash import sha512_crypt;import getpass;print sha512_crypt.encrypt(getpass.getpass())"
Wenn das Modul passlib fehlt:
pip install passlib