pub enum SessionCreationError {
OneTimeKeyNotSigned(OwnedUserId, OwnedDeviceId),
OneTimeKeyMissing(OwnedUserId, OwnedDeviceId),
InvalidSignature {
one_time_key: Box<SignedKey>,
signing_key: Option<Box<Ed25519PublicKey>>,
error: Box<SignatureError>,
},
DeviceMissingCurveKey(OwnedUserId, OwnedDeviceId),
InvalidJson(Error),
InvalidCurveKey(KeyError),
InboundCreation(SessionCreationError),
InvalidDeviceKeys(SignatureError),
MismatchedIdentityKeys(MismatchedIdentityKeysError),
}
Available on crate feature
e2e-encryption
only.Expand description
Error that occurs when a room key can’t be converted into a valid Megolm session.
Variants§
OneTimeKeyNotSigned(OwnedUserId, OwnedDeviceId)
The requested one-time key isn’t a signed curve key.
OneTimeKeyMissing(OwnedUserId, OwnedDeviceId)
The signed one-time key is missing.
InvalidSignature
Failed to verify the one-time key signatures.
Fields
§
signing_key: Option<Box<Ed25519PublicKey>>
The key that was used to verify the signature.
§
error: Box<SignatureError>
The exact error describing why the signature verification failed.
DeviceMissingCurveKey(OwnedUserId, OwnedDeviceId)
The user’s device is missing a curve25519 key.
InvalidJson(Error)
Error deserializing the one-time key.
InvalidCurveKey(KeyError)
The given curve25519 key is not a valid key.
InboundCreation(SessionCreationError)
Error when creating an Olm Session from an incoming Olm message.
InvalidDeviceKeys(SignatureError)
The given device keys are invalid.
MismatchedIdentityKeys(MismatchedIdentityKeysError)
There was a mismatch between the identity keys of the device we received the room key from and the identity keys recorded in the plaintext of the room key to-device message.
Trait Implementations§
source§impl Debug for SessionCreationError
impl Debug for SessionCreationError
source§impl Display for SessionCreationError
impl Display for SessionCreationError
source§impl Error for SessionCreationError
impl Error for SessionCreationError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for SessionCreationError
impl From<Error> for SessionCreationError
source§fn from(source: Error) -> SessionCreationError
fn from(source: Error) -> SessionCreationError
Converts to this type from the input type.
source§impl From<KeyError> for SessionCreationError
impl From<KeyError> for SessionCreationError
source§fn from(source: KeyError) -> SessionCreationError
fn from(source: KeyError) -> SessionCreationError
Converts to this type from the input type.
source§impl From<MismatchedIdentityKeysError> for SessionCreationError
impl From<MismatchedIdentityKeysError> for SessionCreationError
source§fn from(value: MismatchedIdentityKeysError) -> SessionCreationError
fn from(value: MismatchedIdentityKeysError) -> SessionCreationError
Converts to this type from the input type.
source§impl From<SessionCreationError> for OlmError
impl From<SessionCreationError> for OlmError
source§fn from(source: SessionCreationError) -> OlmError
fn from(source: SessionCreationError) -> OlmError
Converts to this type from the input type.
source§impl From<SessionCreationError> for SessionCreationError
impl From<SessionCreationError> for SessionCreationError
source§fn from(source: SessionCreationError) -> SessionCreationError
fn from(source: SessionCreationError) -> SessionCreationError
Converts to this type from the input type.
source§impl From<SignatureError> for SessionCreationError
impl From<SignatureError> for SessionCreationError
source§fn from(source: SignatureError) -> SessionCreationError
fn from(source: SignatureError) -> SessionCreationError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SessionCreationError
impl !RefUnwindSafe for SessionCreationError
impl Send for SessionCreationError
impl Sync for SessionCreationError
impl Unpin for SessionCreationError
impl !UnwindSafe for SessionCreationError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more