Struct matrix_sdk_crypto::olm::ExportedRoomKey
source · [−]pub struct ExportedRoomKey {
pub algorithm: EventEncryptionAlgorithm,
pub room_id: OwnedRoomId,
pub sender_key: Curve25519PublicKey,
pub session_id: String,
pub session_key: ExportedSessionKey,
pub sender_claimed_keys: SigningKeys<DeviceKeyAlgorithm>,
pub forwarding_curve25519_key_chain: Vec<Curve25519PublicKey>,
}Expand description
An exported version of an InboundGroupSession
This can be used to share the InboundGroupSession in an exported file.
Fields
algorithm: EventEncryptionAlgorithmThe encryption algorithm that the session uses.
room_id: OwnedRoomIdThe room where the session is used.
sender_key: Curve25519PublicKeyThe Curve25519 key of the device which initiated the session originally.
session_id: StringThe ID of the session that the key is for.
session_key: ExportedSessionKeyThe key for the session.
sender_claimed_keys: SigningKeys<DeviceKeyAlgorithm>The Ed25519 key of the device which initiated the session originally.
forwarding_curve25519_key_chain: Vec<Curve25519PublicKey>Chain of Curve25519 keys through which this session was forwarded, via m.forwarded_room_key events.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for ExportedRoomKey
impl<'de> Deserialize<'de> for ExportedRoomKey
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for ExportedRoomKey
impl Serialize for ExportedRoomKey
sourceimpl TryFrom<&ExportedRoomKey> for InboundGroupSession
impl TryFrom<&ExportedRoomKey> for InboundGroupSession
type Error = SessionCreationError
type Error = SessionCreationError
The type returned in the event of a conversion error.
sourcefn try_from(key: &ExportedRoomKey) -> Result<Self, Self::Error>
fn try_from(key: &ExportedRoomKey) -> Result<Self, Self::Error>
Performs the conversion.
sourceimpl TryFrom<ExportedRoomKey> for ForwardedRoomKeyContent
impl TryFrom<ExportedRoomKey> for ForwardedRoomKeyContent
sourcefn try_from(
room_key: ExportedRoomKey
) -> Result<ForwardedRoomKeyContent, Self::Error>
fn try_from(
room_key: ExportedRoomKey
) -> Result<ForwardedRoomKeyContent, Self::Error>
Convert an exported room key into a content for a forwarded room key event.
This will fail if the exported room key doesn’t contain an Ed25519 claimed sender key.
type Error = SessionExportError
type Error = SessionExportError
The type returned in the event of a conversion error.
sourceimpl TryFrom<ForwardedRoomKeyContent> for ExportedRoomKey
impl TryFrom<ForwardedRoomKeyContent> for ExportedRoomKey
sourcefn try_from(forwarded_key: ForwardedRoomKeyContent) -> Result<Self, Self::Error>
fn try_from(forwarded_key: ForwardedRoomKeyContent) -> Result<Self, Self::Error>
Convert the content of a forwarded room key into a exported room key.
type Error = SessionExportError
type Error = SessionExportError
The type returned in the event of a conversion error.
Auto Trait Implementations
impl RefUnwindSafe for ExportedRoomKey
impl Send for ExportedRoomKey
impl Sync for ExportedRoomKey
impl Unpin for ExportedRoomKey
impl UnwindSafe for ExportedRoomKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more