Bcrypt is a python module that encrypts passwords.
http://www.mindrot.org/projects/py-bcrypt/<p>Werkzueg is a WSGI Utility Library that comes with encrypting.
http://werkzeug.pocoo.org/docs/utils/#module-werkzeug.security<p>I was wondering if anyone knows which one is better/safer/more consistent?
The werkzeug implementation uses sha1 or md5 (which is bad, see <a href="http://chargen.matasano.com/chargen/2007/9/7/enough-with-the-rainbow-tables-what-you-need-to-know-about-s.html" rel="nofollow">http://chargen.matasano.com/chargen/2007/9/7/enough-with-the...</a> for a good explanation). Stick to bcrypt.