bcryptWrap released

Kless jonas.esp at googlemail.com
Thu Dec 18 00:51:06 CET 2008


Hi,

I'm proud to announce bcryptWrap; a wrapper for bcrypt, the password-
hashing algorithm used in OpenBSD.

For more information read at <http://pypi.python.org/pypi/bcryptWrap/
>. And the source code is at <http://www.bitbucket.org/ares/bcryptwrap/
>.

To install run:

  $ sudo easy_install bcryptWrap

and to use it, its API is very simple:

>>> from bcrypt_wrap import password

>>> bc_pass = password.Password()
>>> hash = bc_pass.create('crack my pass')

>>> bc_pass.valid('crack my pass', hash)
True


More information about the Python-announce-list mailing list