Comment on Ask HN: What kind of authentication model do you use for your API service?parentComments−breathesalt14yRead: http://codahale.com/how-to-safely-store-a-password/Since you're running on GAE you're likely using either python or java:Python bcrypt implementation: http://www.mindrot.org/projects/py-bcrypt/Java bcrypt implementation: http://www.mindrot.org/projects/jBCrypt/
Comments
Read: http://codahale.com/how-to-safely-store-a-password/
Since you're running on GAE you're likely using either python or java:
Python bcrypt implementation: http://www.mindrot.org/projects/py-bcrypt/
Java bcrypt implementation: http://www.mindrot.org/projects/jBCrypt/