Currently the homeserver is trusted to not modify events in cleartext rooms. To resolve this you can turn on end-to-end encryption in a given room. That, however, adds a lot of overhead and is pointless for big, public rooms. As such, it would be nice to be able to sign your own events you send, so that the recipient can ensure that the homeserver did not tamper with the message itself.
The general idea is to sign the content
of each event you send out with your own ed25519 key and a
new event_signing
key. Signing with your own ed25519 key is not enough, as that makes the signature
unverifyable after you log out of your own device. Only using a event_signing
key is not enough,
as signing with your own device key is a nice mitigation for a client that does not support cross-signing yet
The event_signing
key would be an ed25519 key similar to the cross-sigining user_signing
and
self-signing
keys: It is signed by your own master key, uploaded and distributed via the same
endpoints.
As usage
it is expected to have event_signing
listed.
A new key, event_signing_key
, is introduced, which uploads the message singing key, signed by the
master key. As usual, when a user uploads or changes a message singing key, the user ID of that person
should appear in the changed
field of the /sync
reply of other users. An example payload could
look as following:
{
"master_key": {
"user_id": "@alice:example.com",
"usage": ["master"],
"keys": {
"ed25519:base64+master+public+key": "base64+master+public+key",
}
},
"self_signing_key": {
"user_id": "@alice:example.com",
"usage": ["self_signing"],
"keys": {
"ed25519:base64+self+signing+public+key": "base64+self+signing+public+key",
},
"signatures": {
"@alice:example.com": {
"ed25519:base64+master+public+key": "signature+of+self+signing+key"
}
}
},
"user_signing_key": {
"user_id": "@alice:example.com",
"usage": ["user_signing"],
"keys": {
"ed25519:base64+user+signing+public+key": "base64+user+signing+public+key",
},
"signatures": {
"@alice:example.com": {
"ed25519:base64+master+public+key": "signature+of+user+signing+key"
}
}
},
"event_signing_key": {
"user_id": "@alice:example.com",
"usage": ["event_signing"],
"keys": {
"ed25519:base64+message+signing+public+key": "base64+message+signing+key"
},
"signatures": {
"@alice:example.com": {
"ed25519:base64+master+public+key": "signature+of+message+signing+key"
}
}
}
}
Similar to user_signing
keys etc. a new dict, event_signing_keys
is introduced.
Similarly to the master key, everyone should be able to see a persons message signing key, if they share a room with them. This is required to be abe to verify signatures of messages.
The private key can be stored base64-encoded in SSSS under the key m.event_signing
(m.cross_signing.message_signin
? Calling these keys "cross-signing" was prolly not too descriptive...).
To sign a event you strip the signatures
and unsigned
dicts off of the content
(if present),
encode it with canonical json. Then you generate a string as event_type + state_key + canonial_json
.
If there is no state key, due to the event not being a state event, a blank string is assumed. Then
you sign it with the event_signing and device ed25519 key.
For example, a event of type m.room.message
with the following content:
{
"msgtype": "m.text",
"body": "foxies!",
"unsigned": {
"super secret": "wha!"
}
}
Would yield the following string needing to be signed: m.room.message{"body":"foxies!","msgtype":"m.text"}
Prepending the event type and state key is done to rule out attack vectors where the server could modify the type or state key of an event.
The unsigned
object is stripped before signing to stay in-line with every other signable object in
the spec. It currently does not have any real usecase, however in the future one may arise. As such,
it seems like a good idea to strip unsigned
already.
After that, the generated signatures are added in a signatures dict to the content, similar as done elsewhere:
{
"msgtype": "m.text",
"body": "foxies!",
"unsigned": {
"super secret": "wha!"
},
"signatures": {
"@alice:example.com": {
"ed25519:base64+message+signing+key": "signature+of+message+signing+key",
"ed25519:device+id": "signature+of+device+id"
}
}
}
This new content is then used to send events via /_matrix/client/r0/rooms/{roomId}/send/{eventType}/{txnId}
,
/_matrix/client/r0/rooms/{roomId}/state/{eventType}/{stateKey}
or other endpoints.
To add additional verification and authenticity it is a good idea to also sign messages in encrypted rooms. The encrypted content should be signed.
For example, you want to send an encrypted m.room.message
with the content
{
"msgtype": "m.text",
"body": "foxies!",
}
You first encrypt the message as usual, so that it becomes an event of type m.room.encrypted
with content
{
"algorithm": "m.megolm.v1.aes-sha2",
"ciphertext": "beep",
"device_id": "HCJDXEANPN",
"sender_key": "boop",
"session_id": "blubb"
}
Then, you have to sign the following string: m.room.encrypted{"algorithm":"m.megolm.v1.aes-sha2","ciphertext":"beep","device_id":"HCJDXEANPN","sender_key":"boop","session_id":"blubb"}
Then, the content finally becomes
{
"algorithm": "m.megolm.v1.aes-sha2",
"ciphertext": "beep",
"device_id": "HCJDXEANPN",
"sender_key": "boop",
"session_id": "blubb",
"signatures": {
"@alice:example.com": {
"ed25519:base64+message+signing+key": "signature+of+message+signing+key",
"ed25519:HCJDXEANPN": "signature+of+device+HCJDXEANPN"
}
}
}
This content is then sent, as usual, as m.room.encrypted
.
If signatures are present and bad, a client MUST at least display a warning, or completely hide that message.
If signatures are present and good, clients MAY indicate that in the UI somehow, e.g. by a green checkmark.
The introduction of a new event_signing key will force users to enter their recovery passphrase to enable this feature, as the master key is typically not cached. Additionally, the event_signing key should be cached on devices, so that the user doesn't have to enter their recovery key every time they want to send a message.
Adding signatures to events uses up more bytes of the ~64k size limit of events. A rough estimate for signatures would be ~500 bytes, though, which seems insignificant compares to the size limit.
Instead of introducing a new event_signing key, the self_signing key could be re-used for that purpose, as the visibility of those should be the same. The two keys, however, have different purposes. Additionally, the event_signing key should be cached, making it potentially more vulnerable to being stolen. As such, it is a good idea to keep the two separate, to be able to revoke them independently.
The event_signing key should be cached by clients, but it shouldn't be stolen by a third party. Thus, clients will have to think about themselves how to resolve this issue, e.g. by using a securly encrypted store provided by their platform.
Additionally, messages sent in plaintext rooms lose deniability, due to being signed. Messages in encrypted rooms didn't have deniability already anyways.