pub enum MegolmDecryptionError {
Signature(SignatureError),
InvalidMAC(MacError),
InvalidMACLength(usize, usize),
InvalidPadding(UnpadError),
UnknownMessageIndex(u32, u32),
}Available on crate feature
e2e-encryption only.Expand description
Error type for Megolm-based decryption failuers.
Variants
Signature(SignatureError)
The signature on the message was invalid.
InvalidMAC(MacError)
The message authentication code of the message was invalid.
InvalidMACLength(usize, usize)
The length of the message authentication code of the message did not match our expected length.
InvalidPadding(UnpadError)
The ciphertext of the message isn’t padded correctly.
UnknownMessageIndex(u32, u32)
The session is missing the correct message key to decrypt the message, The Session has been ratcheted forwards and the message key isn’t available anymore.
Trait Implementations
impl Debug for DecryptionError
impl Debug for DecryptionError
impl Display for DecryptionError
impl Display for DecryptionError
impl Error for DecryptionError
impl Error for DecryptionError
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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl From<DecryptionError> for MegolmError
impl From<DecryptionError> for MegolmError
fn from(source: DecryptionError) -> MegolmError
fn from(source: DecryptionError) -> MegolmError
Converts to this type from the input type.
impl From<MacError> for DecryptionError
impl From<MacError> for DecryptionError
fn from(source: MacError) -> DecryptionError
fn from(source: MacError) -> DecryptionError
Converts to this type from the input type.
impl From<SignatureError> for DecryptionError
impl From<SignatureError> for DecryptionError
fn from(source: SignatureError) -> DecryptionError
fn from(source: SignatureError) -> DecryptionError
Converts to this type from the input type.
impl From<UnpadError> for DecryptionError
impl From<UnpadError> for DecryptionError
fn from(source: UnpadError) -> DecryptionError
fn from(source: UnpadError) -> DecryptionError
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for DecryptionError
impl Send for DecryptionError
impl Sync for DecryptionError
impl Unpin for DecryptionError
impl !UnwindSafe for DecryptionError
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