1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
use crate::algorithm::AlgorithmType; use base64::DecodeError; use crypto_mac::{InvalidKeyLength, MacError}; use serde_json::Error as JsonError; use std::fmt; use std::string::FromUtf8Error; #[derive(Debug)] pub enum Error { AlgorithmMismatch(AlgorithmType, AlgorithmType), NoKeyId, NoKeyWithKeyId(String), Format, Base64(DecodeError), Json(JsonError), Utf8(FromUtf8Error), RustCryptoMac(MacError), RustCryptoMacKeyLength(InvalidKeyLength), #[cfg(feature = "openssl")] OpenSsl(openssl::error::ErrorStack), } impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { match *self { Error::AlgorithmMismatch(a, b) => { write!(f, "Expected algorithm type {:?} but found {:?}", a, b) } Error::NoKeyId => write!(f, "No key id found"), Error::NoKeyWithKeyId(ref kid) => write!(f, "Key with key id {} not found", kid), Error::Format => write!(f, "Format"), Error::Base64(ref x) => write!(f, "{}", x), Error::Json(ref x) => write!(f, "{}", x), Error::Utf8(ref x) => write!(f, "{}", x), Error::RustCryptoMac(ref x) => write!(f, "{}", x), Error::RustCryptoMacKeyLength(ref x) => write!(f, "{}", x), #[cfg(feature = "openssl")] Error::OpenSsl(ref x) => write!(f, "{}", x), } } } macro_rules! error_wrap { ($f: ty, $e: expr) => { impl From<$f> for Error { fn from(f: $f) -> Error { $e(f) } } }; } error_wrap!(DecodeError, Error::Base64); error_wrap!(JsonError, Error::Json); error_wrap!(FromUtf8Error, Error::Utf8); error_wrap!(MacError, Error::RustCryptoMac); error_wrap!(InvalidKeyLength, Error::RustCryptoMacKeyLength); #[cfg(feature = "openssl")] error_wrap!(openssl::error::ErrorStack, Error::OpenSsl);