pub enum SignatureError {
Signing,
Verification,
InvalidSignature,
}Expand description
Defines the errors that can occur during signing and verification.
定义了在签名和验证过程中可能发生的错误。
Variants§
Signing
Failed to create a digital signature.
创建数字签名失败。
Verification
Signature verification failed, indicating that the signature is invalid, the data has been tampered with, or the wrong key was used.
签名验证失败,表明签名无效、数据被篡改或使用了错误的密钥。
InvalidSignature
The provided signature is malformed or has an invalid length.
提供的签名格式错误或长度无效。
Trait Implementations§
Source§impl Debug for SignatureError
impl Debug for SignatureError
Source§impl Display for SignatureError
impl Display for SignatureError
Source§impl Error for SignatureError
impl Error for SignatureError
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<SignatureError> for Error
impl From<SignatureError> for Error
Source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SignatureError
impl PartialEq for SignatureError
impl Eq for SignatureError
impl StructuralPartialEq for SignatureError
Auto Trait Implementations§
impl Freeze for SignatureError
impl RefUnwindSafe for SignatureError
impl Send for SignatureError
impl Sync for SignatureError
impl Unpin for SignatureError
impl UnwindSafe for SignatureError
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