#[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.