Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 169 Bytes

File metadata and controls

5 lines (4 loc) · 169 Bytes
  • Create a password hash:
python3 -c 'import crypt,getpass;pw=getpass.getpass();print(crypt.crypt(pw) if (pw==getpass.getpass("Confirm: ")) else exit())'