The documentation is incorrect for:
webapp2_extras.security.generate_password_hash
http://code.google.com/p/webapp-improved/source/browse/webapp2_extras/security.p
y#98
The docstring states:
Returns a formatted hashed string that looks like this:
method$salt$hash
The code says:
return '%s$%s$%s' % (hashval, method, salt)
In other words, it is method$salt$hash versus hash$method$salt
Original issue reported on code.google.com by da...@metacircle.net on 26 Oct 2012 at 8:57
Original issue reported on code.google.com by
da...@metacircle.net
on 26 Oct 2012 at 8:57