Struct matrix_sdk_crypto::UploadSigningKeysRequest [−][src]
pub struct UploadSigningKeysRequest {
pub master_key: Option<CrossSigningKey>,
pub self_signing_key: Option<CrossSigningKey>,
pub user_signing_key: Option<CrossSigningKey>,
}Expand description
Request that will publish a cross signing identity.
This uploads the public cross signing key triplet.
Fields
master_key: Option<CrossSigningKey>The user’s master key.
self_signing_key: Option<CrossSigningKey>The user’s self-signing key. Must be signed with the accompanied master, or by the user’s most recently uploaded master key if no master key is included in the request.
user_signing_key: Option<CrossSigningKey>The user’s user-signing key. Must be signed with the accompanied master, or by the user’s most recently uploaded master key if no master key is included in the request.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for UploadSigningKeysRequest
impl Send for UploadSigningKeysRequest
impl Sync for UploadSigningKeysRequest
impl Unpin for UploadSigningKeysRequest
impl UnwindSafe for UploadSigningKeysRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more