Skip to content

Commit 77a0dd2

Browse files
committed
version 1.0
1 parent c4bdc76 commit 77a0dd2

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGES.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.0
2+
===
3+
- Change version to 1.0
4+
15
0.9
26
===
37
- Add cryptacular.crypt.CRYPTPasswordManager(prefix) based on Python's

README.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
cryptacular
22
===========
33

4+
Hash responsibly::
5+
6+
from cryptacular.bcrypt import BCRYPTPasswordManager
7+
manager = BCRYPTPasswordManager()
8+
hashed = manager.encode('password')
9+
if manager.check(hashed, 'password'):
10+
pass # let them in
11+
412
cryptacular is a collection of strong password hashing functions that
513
share a common interface, and a nice way to use bcrypt as a password
614
hash. It's designed to make it easy for you to migrate away from your

0 commit comments

Comments
 (0)