Enum sequoia_openpgp::Error
source · #[non_exhaustive]pub enum Error {
Show 30 variants
InvalidArgument(String),
InvalidOperation(String),
MalformedPacket(String),
PacketTooLarge(Tag, u32, u32),
UnsupportedPacketType(Tag),
UnsupportedHashAlgorithm(HashAlgorithm),
UnsupportedPublicKeyAlgorithm(PublicKeyAlgorithm),
UnsupportedEllipticCurve(Curve),
UnsupportedSymmetricAlgorithm(SymmetricAlgorithm),
UnsupportedAEADAlgorithm(AEADAlgorithm),
UnsupportedCompressionAlgorithm(CompressionAlgorithm),
UnsupportedSignatureType(SignatureType),
InvalidPassword,
InvalidSessionKey(String),
MissingSessionKey(String),
MalformedMPI(String),
BadSignature(String),
ManipulatedMessage,
MalformedMessage(String),
MalformedCert(String),
UnsupportedCert2(String, Vec<Packet>),
UnsupportedCert(String),
IndexOutOfRange,
Expired(SystemTime),
NotYetLive(SystemTime),
NoBindingSignature(SystemTime),
InvalidKey(String),
NoAcceptableHash,
PolicyViolation(String, Option<SystemTime>),
ShortKeyID(String),
}
Expand description
Errors used in this crate.
Note: This enum cannot be exhaustively matched to allow future extensions.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidArgument(String)
Invalid argument.
InvalidOperation(String)
Invalid operation.
MalformedPacket(String)
A malformed packet.
PacketTooLarge(Tag, u32, u32)
Packet size exceeds the configured limit.
UnsupportedPacketType(Tag)
Unsupported packet type.
UnsupportedHashAlgorithm(HashAlgorithm)
Unsupported hash algorithm identifier.
UnsupportedPublicKeyAlgorithm(PublicKeyAlgorithm)
Unsupported public key algorithm identifier.
UnsupportedEllipticCurve(Curve)
Unsupported elliptic curve ASN.1 OID.
UnsupportedSymmetricAlgorithm(SymmetricAlgorithm)
Unsupported symmetric key algorithm.
UnsupportedAEADAlgorithm(AEADAlgorithm)
Unsupported AEAD algorithm.
UnsupportedCompressionAlgorithm(CompressionAlgorithm)
Unsupported Compression algorithm.
UnsupportedSignatureType(SignatureType)
Unsupported signature type.
InvalidPassword
Invalid password.
InvalidSessionKey(String)
Invalid session key.
MissingSessionKey(String)
Missing session key.
MalformedMPI(String)
Malformed MPI.
BadSignature(String)
Bad signature.
ManipulatedMessage
Message has been manipulated.
MalformedMessage(String)
Malformed message.
MalformedCert(String)
Malformed certificate.
UnsupportedCert2(String, Vec<Packet>)
Unsupported Cert.
This usually occurs, because the primary key is in an unsupported format. In particular, Sequoia does not support version 3 keys.
UnsupportedCert(String)
Unsupported Cert, deprecated version.
IndexOutOfRange
Index out of range.
Expired(SystemTime)
Expired.
NotYetLive(SystemTime)
Not yet live.
NoBindingSignature(SystemTime)
No binding signature.
InvalidKey(String)
Invalid key.
NoAcceptableHash
No hash algorithm found that would be accepted by all signers.
PolicyViolation(String, Option<SystemTime>)
The operation is not allowed, because it violates the policy.
The optional time is the time at which the operation was determined to no longer be secure.
ShortKeyID(String)
Short key IDs are insecure, and not supported.
Trait Implementations§
source§impl Error for Error
impl Error for Error
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl<'a> From<VerificationError<'a>> for Error
impl<'a> From<VerificationError<'a>> for Error
source§fn from(e: VerificationError<'a>) -> Self
fn from(e: VerificationError<'a>) -> Self
source§impl PartialEq for Error
impl PartialEq for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)