You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# generate crypt(3) compatible passwords with python
mkpasswd-sha512() {
python -c 'import getpass as g; import crypt as c; p = g.getpass("Enter password: "); print(c.crypt(p, c.METHOD_SHA512) if p == g.getpass("Repeat password: ") else "Passwords do not match.")';