summary refs log tree commit diff
path: root/synapse/handlers/auth.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-05-11 12:06:02 +0100
committerErik Johnston <erik@matrix.org>2016-05-11 12:06:02 +0100
commit1400bb1663657565be9e3051058a3af8ac02de96 (patch)
tree22e866a70f9048bff6c7609d69f8e33eb7978f28 /synapse/handlers/auth.py
parentPass through _get_state_group_for_events (diff)
downloadsynapse-1400bb1663657565be9e3051058a3af8ac02de96.tar.xz
Correctly handle NULL password hashes from the database
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r--synapse/handlers/auth.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py
index 61fe56032a..6e7d080ecc 100644
--- a/synapse/handlers/auth.py
+++ b/synapse/handlers/auth.py
@@ -615,4 +615,7 @@ class AuthHandler(BaseHandler):
         Returns:
             Whether self.hash(password) == stored_hash (bool).
         """
-        return bcrypt.hashpw(password, stored_hash) == stored_hash
+        if stored_hash:
+            return bcrypt.hashpw(password, stored_hash) == stored_hash
+        else:
+            return False