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
--
http://mail.python.org/mailman/listinfo/python-announce-list

        Support the Python Software Foundation:
        http://www.python.org/psf/donations.html

Reply via email to