22 releases (13 breaking)

0.14.0 Oct 5, 2023
0.13.1 Feb 15, 2023
0.12.0 Sep 12, 2022
0.11.0 Apr 28, 2022
0.1.0 Dec 12, 2016

#533 in Cryptography

Download history 37/week @ 2024-01-01 64/week @ 2024-01-08 99/week @ 2024-01-15 29/week @ 2024-01-22 47/week @ 2024-01-29 26/week @ 2024-02-05 98/week @ 2024-02-12 69/week @ 2024-02-19 149/week @ 2024-02-26 215/week @ 2024-03-04 168/week @ 2024-03-11 152/week @ 2024-03-18 130/week @ 2024-03-25 205/week @ 2024-04-01 116/week @ 2024-04-08 88/week @ 2024-04-15

551 downloads per month
Used in 13 crates (via ruma)

MIT license

570KB
11K SLoC

ruma-signatures

crates.io page docs.rs page license: MIT

ruma-signatures provides functionality for creating digital signatures according to the Matrix specification.


lib.rs:

Digital signatures according to the Matrix specification.

Digital signatures are used by Matrix homeservers to verify the authenticity of events in the Matrix system, as well as requests between homeservers for federation. Each homeserver has one or more signing key pairs (sometimes referred to as "verify keys") which it uses to sign all events and federation requests. Matrix clients and other Matrix homeservers can ask the homeserver for its public keys and use those keys to verify the signed data.

Each signing key pair has an identifier, which consists of the name of the digital signature algorithm it uses and a "version" string, separated by a colon. The version is an arbitrary identifier used to distinguish key pairs using the same algorithm from the same homeserver.

Arbitrary JSON objects can be signed as well as JSON representations of Matrix events. In both cases, the signatures are stored within the JSON object itself under a signatures key. Events are also required to contain hashes of their content, which are similarly stored within the hashed JSON object under a hashes key.

In JSON representations, both signatures and hashes appear as base64-encoded strings, using the standard character set, without padding.

Signing and hashing

To sign an arbitrary JSON object, use the sign_json function. See the documentation of this function for more details and a full example of use.

Signing an event uses a more complicated process than signing arbitrary JSON, because events can be redacted, and signatures need to remain valid even if data is removed from an event later. Homeservers are required to generate hashes of event contents as well as signing events before exchanging them with other homeservers. Although the algorithm for hashing and signing an event is more complicated than for signing arbitrary JSON, the interface to a user of ruma-signatures is the same. To hash and sign an event, use the hash_and_sign_event function. See the documentation of this function for more details and a full example of use.

Verifying signatures and hashes

When a homeserver receives data from another homeserver via the federation, it's necessary to verify the authenticity and integrity of the data by verifying their signatures.

To verify a signature on arbitrary JSON, use the verify_json function. To verify the signatures and hashes on an event, use the verify_event function. See the documentation for these respective functions for more details and full examples of use.

Dependencies

~10–14MB
~293K SLoC