You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to run Authentication example
code with python3, but not work
and raise Unicode-objects must be encoded before hashin
defencrypt(self, password):
"""Encrypt password using hashlib and current salt. """returnstr(hashlib.sha1(password+str(self.salt))\
.hexdigest())
i think above code Should be changed to
defencrypt(self, password):
"""Encrypt password using hashlib and current salt. """returnstr(hashlib.sha1((password+str(self.salt)).encode('utf8')).hexdigest())
btw, raise an AttributeError: 'User' object has no attribute 'salt'
When i use user.check_password(password) in login method, because current obj has not salt
The text was updated successfully, but these errors were encountered:
Oh well, these examples indeed have not been touched for a long time :). If you have a working solution by now, would me mind creating a PR with a new runnable example in the examples/ directory?
I want to run Authentication example
code with python3, but not work
and raise
Unicode-objects must be encoded before hashin
i think above code Should be changed to
btw, raise an
AttributeError: 'User' object has no attribute 'salt'
When i use
user.check_password(password)
in login method, because current obj has not saltThe text was updated successfully, but these errors were encountered: