Add null separator to hmac

pull/4/merge
Erik Johnston 9 years ago
parent be3548f7e1
commit 0da24cac8b
  1. 2
      scripts/register_new_matrix_user
  2. 2
      synapse/rest/client/v1/register.py

@ -32,7 +32,9 @@ def request_registration(user, password, server_location, shared_secret, admin=F
) )
mac.update(user) mac.update(user)
mac.update("\x00")
mac.update(password) mac.update(password)
mac.update("\x00")
mac.update("admin" if admin else "notadmin") mac.update("admin" if admin else "notadmin")
mac = mac.hexdigest() mac = mac.hexdigest()

@ -336,7 +336,9 @@ class RegisterRestServlet(ClientV1RestServlet):
digestmod=sha1, digestmod=sha1,
) )
want_mac.update(user) want_mac.update(user)
want_mac.update("\x00")
want_mac.update(password) want_mac.update(password)
want_mac.update("\x00")
want_mac.update("admin" if admin else "notadmin") want_mac.update("admin" if admin else "notadmin")
want_mac = want_mac.hexdigest() want_mac = want_mac.hexdigest()

Loading…
Cancel
Save