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') >>> print hash $2a$10$.tTSzgua095323LkKvOtI.vzsQKw70Wqqm64f5k1Wha.l/0yec87G >>> bc_pass.valid('crack my pass', hash) True --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

