gen_bcrypt.py 94 B

123
  1. import bcrypt
  2. pwd = b'admin123'
  3. print(bcrypt.hashpw(pwd, bcrypt.gensalt(rounds=10)).decode())