diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-10-16 17:45:48 +0100 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-10-16 17:45:48 +0100 |
commit | 0e5239ffc38c6c13799c0001f2267fe8290a7300 (patch) | |
tree | 9a02aebafbc4d353fb3e3c160bb8b8d7406c293f /synapse/util | |
parent | Add signing host and keyname to signatures (diff) | |
download | synapse-0e5239ffc38c6c13799c0001f2267fe8290a7300.tar.xz |
Stuff signed data in a standalone object
Makes both generating it in sydent, and verifying it here, simpler at the cost of some repetition
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/third_party_invites.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/third_party_invites.py b/synapse/util/third_party_invites.py index 792db5ba39..31d186740d 100644 --- a/synapse/util/third_party_invites.py +++ b/synapse/util/third_party_invites.py @@ -23,8 +23,8 @@ JOIN_KEYS = { "token", "public_key", "key_validity_url", - "signatures", "sender", + "signed", } |