pub enum StreamError {
Truncated,
Random(RandomError),
}Expand description
crypto_stream can fail only if the OS CSPRNG fails while generating a fresh IV - there is no
tag to mismatch (see the module doc’s “No authentication” section).
Variants§
Truncated
The input to decrypt is shorter than an IV (32 bytes) - too short to have ever been
produced by encrypt.
Random(RandomError)
The OS CSPRNG failed while generating an IV (see crate::randombytes).
Trait Implementations§
Source§impl Debug for StreamError
impl Debug for StreamError
Source§impl Display for StreamError
impl Display for StreamError
Source§impl Error for StreamError
impl Error for StreamError
1.30.0 · 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 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<RandomError> for StreamError
impl From<RandomError> for StreamError
Source§fn from(e: RandomError) -> Self
fn from(e: RandomError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StreamError
impl RefUnwindSafe for StreamError
impl Send for StreamError
impl Sync for StreamError
impl Unpin for StreamError
impl UnsafeUnpin for StreamError
impl UnwindSafe for StreamError
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