Search Results

4
votes

Python Authentication API

dbr said: def hash_password(password): """Returns the hashed version of a string """ return hasher.new( str(password) ).hexdigest() …