We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14b810a commit fbd7747Copy full SHA for fbd7747
test.py
@@ -0,0 +1,5 @@
1
+import simplebcrypt
2
+hash1 = simplebcrypt.bhash("password")
3
+testhash = simplebcrypt.bhash("password".encode())
4
+if simplebcrypt.verify("password",hash1) != True:
5
+ raise Exception("Verification error")
0 commit comments