5 lines
126 B
Python
5 lines
126 B
Python
import getpass
|
|
|
|
import bcrypt
|
|
|
|
print(bcrypt.hashpw(getpass.getpass("Password: ").encode("utf-8"), bcrypt.gensalt()).decode())
|