pub enum CryptoError {
Show 30 variants
InvalidHasher,
BufferTooSmall,
UnsupportedBlockSize(usize),
MessageTooLarge,
InvalidHashSize(usize),
UnsupportedOperation(String),
InvalidRound(usize),
InvalidNonceSize {
expected: &'static str,
actual: usize,
},
InvalidTagSize {
expected: &'static str,
actual: usize,
},
InvalidBlockSize(usize),
InvalidParameterStr(&'static str),
InvalidKeySize {
expected: &'static str,
actual: usize,
},
InvalidIvSize(usize),
CounterOverflow,
InvalidLength,
InvalidBufferOverlap,
AuthenticationFailed,
InvalidHashState,
InvalidHashIdentifier,
StrError(&'static str),
Utf8Error(Utf8Error),
IoEof,
MismatchedHashAndPassword,
HashTooShort,
HashVersionTooNew(u8),
InvalidHashPrefix(u8),
InvalidCost(u32),
PasswordTooLong,
UnpadError,
PadError,
}Variants§
InvalidHasher
BufferTooSmall
UnsupportedBlockSize(usize)
MessageTooLarge
InvalidHashSize(usize)
UnsupportedOperation(String)
InvalidRound(usize)
InvalidNonceSize
InvalidTagSize
InvalidBlockSize(usize)
InvalidParameterStr(&'static str)
InvalidKeySize
InvalidIvSize(usize)
CounterOverflow
InvalidLength
InvalidBufferOverlap
AuthenticationFailed
InvalidHashState
InvalidHashIdentifier
StrError(&'static str)
Utf8Error(Utf8Error)
IoEof
MismatchedHashAndPassword
HashTooShort
HashVersionTooNew(u8)
InvalidHashPrefix(u8)
InvalidCost(u32)
PasswordTooLong
UnpadError
PadError
Trait Implementations§
Source§impl Clone for CryptoError
impl Clone for CryptoError
Source§fn clone(&self) -> CryptoError
fn clone(&self) -> CryptoError
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CryptoError
impl Debug for CryptoError
Source§impl Display for CryptoError
impl Display for CryptoError
Source§impl Error for CryptoError
impl Error for CryptoError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Utf8Error> for CryptoError
impl From<Utf8Error> for CryptoError
Source§impl PartialEq for CryptoError
impl PartialEq for CryptoError
impl StructuralPartialEq for CryptoError
Auto Trait Implementations§
impl Freeze for CryptoError
impl RefUnwindSafe for CryptoError
impl Send for CryptoError
impl Sync for CryptoError
impl Unpin for CryptoError
impl UnwindSafe for CryptoError
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)