How to use bcrypt on Google App Engine (GAE)? [duplicate]
This question already has an answer here: How to include third party Python libraries in Google App Engine? 6 answers I have found a bcrypt library for python that seems to be very easy to use: bcrypt 1.0.1 After installing it and testing the hello world example in my local machine all seems fine: >>> import bcrypt >>> password = b"super secret password" >>> # Hash a password for the first time, with a certain number of rounds >>> hashed = bcrypt.hashpw(password, bcrypt.gensalt(10)) >>> # Check that a unhashed password matches one that has previously been >>> # hashed >>> if bcrypt.hashpw