Skip to content

Instantly share code, notes, and snippets.

@JorgeFrancoIbanez
Created June 12, 2019 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JorgeFrancoIbanez/88adb2c1ba902560531ec3d0a958e9a7 to your computer and use it in GitHub Desktop.
Save JorgeFrancoIbanez/88adb2c1ba902560531ec3d0a958e9a7 to your computer and use it in GitHub Desktop.
#!bin/python
import bcrypt
hash = b"Thistextwillbehashed"
hashed = bcrypt.hashpw(hash, bcrypt.gensalt())
print(hashed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment