123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- # -*- coding: utf-8 -*-
- # Copyright 2015, 2016 OpenMarket Ltd
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import nacl.signing
- from unpaddedbase64 import decode_base64
- from synapse.crypto.event_signing import add_hashes_and_signatures
- from synapse.events.builder import EventBuilder
- from tests import unittest
- # Perform these tests using given secret key so we get entirely deterministic
- # signatures output that we can test against.
- SIGNING_KEY_SEED = decode_base64(
- "YJDBA9Xnr2sVqXD9Vj7XVUnmFZcZrlw8Md7kMW+3XA1"
- )
- KEY_ALG = "ed25519"
- KEY_VER = 1
- KEY_NAME = "%s:%d" % (KEY_ALG, KEY_VER)
- HOSTNAME = "domain"
- class EventSigningTestCase(unittest.TestCase):
- def setUp(self):
- self.signing_key = nacl.signing.SigningKey(SIGNING_KEY_SEED)
- self.signing_key.alg = KEY_ALG
- self.signing_key.version = KEY_VER
- def test_sign_minimal(self):
- builder = EventBuilder(
- {
- 'event_id': "$0:domain",
- 'origin': "domain",
- 'origin_server_ts': 1000000,
- 'signatures': {},
- 'type': "X",
- 'unsigned': {'age_ts': 1000000},
- },
- )
- add_hashes_and_signatures(builder, HOSTNAME, self.signing_key)
- event = builder.build()
- self.assertTrue(hasattr(event, 'hashes'))
- self.assertIn('sha256', event.hashes)
- self.assertEquals(
- event.hashes['sha256'],
- "6tJjLpXtggfke8UxFhAKg82QVkJzvKOVOOSjUDK4ZSI",
- )
- self.assertTrue(hasattr(event, 'signatures'))
- self.assertIn(HOSTNAME, event.signatures)
- self.assertIn(KEY_NAME, event.signatures["domain"])
- self.assertEquals(
- event.signatures[HOSTNAME][KEY_NAME],
- "2Wptgo4CwmLo/Y8B8qinxApKaCkBG2fjTWB7AbP5Uy+"
- "aIbygsSdLOFzvdDjww8zUVKCmI02eP9xtyJxc/cLiBA",
- )
- def test_sign_message(self):
- builder = EventBuilder(
- {
- 'content': {
- 'body': "Here is the message content",
- },
- 'event_id': "$0:domain",
- 'origin': "domain",
- 'origin_server_ts': 1000000,
- 'type': "m.room.message",
- 'room_id': "!r:domain",
- 'sender': "@u:domain",
- 'signatures': {},
- 'unsigned': {'age_ts': 1000000},
- }
- )
- add_hashes_and_signatures(builder, HOSTNAME, self.signing_key)
- event = builder.build()
- self.assertTrue(hasattr(event, 'hashes'))
- self.assertIn('sha256', event.hashes)
- self.assertEquals(
- event.hashes['sha256'],
- "onLKD1bGljeBWQhWZ1kaP9SorVmRQNdN5aM2JYU2n/g",
- )
- self.assertTrue(hasattr(event, 'signatures'))
- self.assertIn(HOSTNAME, event.signatures)
- self.assertIn(KEY_NAME, event.signatures["domain"])
- self.assertEquals(
- event.signatures[HOSTNAME][KEY_NAME],
- "Wm+VzmOUOz08Ds+0NTWb1d4CZrVsJSikkeRxh6aCcUw"
- "u6pNC78FunoD7KNWzqFn241eYHYMGCA5McEiVPdhzBA"
- )
|