Enum vodozemac::olm::DecryptionError
source · pub enum DecryptionError {
InvalidMAC(MacError),
InvalidMACLength(usize, usize),
InvalidPadding(UnpadError),
MissingMessageKey(u64),
TooBigMessageGap(u64, u64),
}
Expand description
Error type for Olm-based decryption failures.
Variants§
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.
MissingMessageKey(u64)
The session is missing the correct message key to decrypt the message, either because it was already used up, or because the Session has been ratcheted forwards and the message key has been discarded.
TooBigMessageGap(u64, u64)
Too many messages have been skipped to attempt decrypting this message.
Trait Implementations§
source§impl Debug for DecryptionError
impl Debug for DecryptionError
source§impl Display for DecryptionError
impl Display for DecryptionError
source§impl Error for DecryptionError
impl Error for DecryptionError
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<DecryptionError> for SessionCreationError
impl From<DecryptionError> for SessionCreationError
source§fn from(source: DecryptionError) -> Self
fn from(source: DecryptionError) -> Self
Converts to this type from the input type.
source§impl From<MacError> for DecryptionError
impl From<MacError> for DecryptionError
source§impl From<UnpadError> for DecryptionError
impl From<UnpadError> for DecryptionError
source§fn from(source: UnpadError) -> Self
fn from(source: UnpadError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecryptionError
impl RefUnwindSafe for DecryptionError
impl Send for DecryptionError
impl Sync for DecryptionError
impl Unpin for DecryptionError
impl UnwindSafe for DecryptionError
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