diff options
author | Erik Johnston <erikj@jki.re> | 2016-06-16 10:12:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-16 10:12:17 +0100 |
commit | 486b9a6a2d285023c23ce509c36deba1de71b844 (patch) | |
tree | 2a41e4678fc3dbf56944abf0af2c97ccdd6792d8 /synapse | |
parent | Merge pull request #872 from matrix-org/erikj/preview_url_fixes (diff) | |
parent | Fix TypeError in call to bcrypt.hashpw (diff) | |
download | synapse-486b9a6a2d285023c23ce509c36deba1de71b844.tar.xz |
Merge pull request #873 from vt0r/bugfix/bcrypt-utf8-encode
Fix TypeError in call to bcrypt.hashpw
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 200793b5ed..b38f81e999 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -626,6 +626,6 @@ class AuthHandler(BaseHandler): Whether self.hash(password) == stored_hash (bool). """ if stored_hash: - return bcrypt.hashpw(password, stored_hash) == stored_hash + return bcrypt.hashpw(password, stored_hash.encode('utf-8')) == stored_hash else: return False |