2 lines
78 B
Python
2 lines
78 B
Python
import bcrypt
|
|
print(bcrypt.hashpw(b"Test1234!@#", bcrypt.gensalt()).decode())
|
import bcrypt
|
|
print(bcrypt.hashpw(b"Test1234!@#", bcrypt.gensalt()).decode())
|