1//! Types for the [`m.key.verification.key`] event.
2//!
3//! [`m.key.verification.key`]: https://spec.matrix.org/latest/client-server-api/#mkeyverificationkey
45use ruma_common::{serde::Base64, OwnedTransactionId};
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
89use crate::relation::Reference;
1011/// The content of a to-device `m.key.verification.key` event.
12///
13/// Sends the ephemeral public key for a device to the partner device.
14#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
15#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
16#[ruma_event(type = "m.key.verification.key", kind = ToDevice)]
17pub struct ToDeviceKeyVerificationKeyEventContent {
18/// An opaque identifier for the verification process.
19 ///
20 /// Must be the same as the one used for the `m.key.verification.start` message.
21pub transaction_id: OwnedTransactionId,
2223/// The device's ephemeral public key, encoded as unpadded base64.
24pub key: Base64,
25}
2627impl ToDeviceKeyVerificationKeyEventContent {
28/// Creates a new `ToDeviceKeyVerificationKeyEventContent` with the given transaction ID and
29 /// key.
30pub fn new(transaction_id: OwnedTransactionId, key: Base64) -> Self {
31Self { transaction_id, key }
32 }
33}
3435/// The content of an in-room `m.key.verification.key` event.
36///
37/// Sends the ephemeral public key for a device to the partner device.
38#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
39#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
40#[ruma_event(type = "m.key.verification.key", kind = MessageLike)]
41pub struct KeyVerificationKeyEventContent {
42/// The device's ephemeral public key, encoded as unpadded base64.
43pub key: Base64,
4445/// Information about the related event.
46#[serde(rename = "m.relates_to")]
47pub relates_to: Reference,
48}
4950impl KeyVerificationKeyEventContent {
51/// Creates a new `KeyVerificationKeyEventContent` with the given key and reference.
52pub fn new(key: Base64, relates_to: Reference) -> Self {
53Self { key, relates_to }
54 }
55}