We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4bdc76 commit 77a0dd2Copy full SHA for 77a0dd2
CHANGES.txt
@@ -1,3 +1,7 @@
1
+1.0
2
+===
3
+- Change version to 1.0
4
+
5
0.9
6
===
7
- Add cryptacular.crypt.CRYPTPasswordManager(prefix) based on Python's
README.txt
@@ -1,6 +1,14 @@
cryptacular
===========
+Hash responsibly::
+ from cryptacular.bcrypt import BCRYPTPasswordManager
+ manager = BCRYPTPasswordManager()
8
+ hashed = manager.encode('password')
9
+ if manager.check(hashed, 'password'):
10
+ pass # let them in
11
12
cryptacular is a collection of strong password hashing functions that
13
share a common interface, and a nice way to use bcrypt as a password
14
hash. It's designed to make it easy for you to migrate away from your
0 commit comments