Enum ruma_signatures::ParseError
source · #[non_exhaustive]pub enum ParseError {
UserId(IdParseError),
EventId(IdParseError),
ServerNameFromEventIdByRoomVersion(OwnedEventId, RoomVersionId),
DerivedPublicKeyDoesNotMatchParsedKey {
parsed_key: Vec<u8>,
derived_key: Vec<u8>,
},
Oid {
expected: ObjectIdentifier,
found: ObjectIdentifier,
},
SecretKey,
PublicKey(SignatureError),
Signature(SignatureError),
Base64 {
of_type: String,
string: String,
source: Base64DecodeError,
},
}
Expand description
Errors relating to parsing of all sorts.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UserId(IdParseError)
For user ID parsing errors.
EventId(IdParseError)
For event ID parsing errors.
ServerNameFromEventIdByRoomVersion(OwnedEventId, RoomVersionId)
For when an event ID, coupled with a specific room version, doesn’t have a server name embedded.
DerivedPublicKeyDoesNotMatchParsedKey
For when the extracted/“parsed” public key from a PKCS#8 v2 document doesn’t match the public key derived from it’s private key.
Oid
For when the ASN.1 Object Identifier on a PKCS#8 document doesn’t match the expected one.
e.g. the document describes a RSA key, while an ed25519 key was expected.
Fields
§
expected: ObjectIdentifier
The expected OID.
§
found: ObjectIdentifier
The OID that was found instead.
SecretKey
For when ed25519_dalek
cannot parse a secret/private key.
PublicKey(SignatureError)
For when ed25519_dalek
cannot parse a public key.
Signature(SignatureError)
For when ed25519_dalek
cannot parse a signature.
Base64
For when parsing base64 gives an error.
Trait Implementations§
source§impl Debug for ParseError
impl Debug for ParseError
source§impl Display for ParseError
impl Display for ParseError
source§impl Error for ParseError
impl Error for ParseError
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<ParseError> for Error
impl From<ParseError> for Error
source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseError
impl !RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl !UnwindSafe for ParseError
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