Chryslerx10's picture
first push
27eb7af
raw
history blame
169 Bytes
import bcrypt
salt = b'$2b$12$MC7djiqmIR7154Syul5Wme'
print(salt)
hashed = bcrypt.hashpw(b'h3J_@22g', salt)
print(hashed)
print(bcrypt.checkpw(b'h3J_@22g', hashed))