forked from exavolt/python-phpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
32 lines (22 loc) · 984 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Portable PHP password hashing framework implemented in Python.
This Python implementation meant to be an exact port of the the original PHP
version.
PHPass is used by WordPress, bbPress, Vanilla Forums, PivotX and phpBB. This
Python port will be handy to work with user account data imported from those
applications. You can also use this to hash passwords in your Python
applications for sure.
The original PHP version: http://www.openwall.com/phpass/
PHP version written by Solar Designer.
Python implementation by exavolt <exavolt@gmail.com>
Dependencies
------------
* bcrypt http://www.mindrot.org/projects/py-bcrypt/ (optional)
Unlicense
---------
This is free and unencumbered software released into the public domain.
Links
-----
* http://www.openwall.com/phpass/ - the original version in PHP
* http://packages.python.org/passlib/ - this all-in-one password hashing
library supports phpass portable hashing algorithm as one of its 20
more algorithms