jsonwebtoken/src/errors.rs

31 lines
852 B
Rust
Raw Normal View History

2015-10-31 11:37:15 -04:00
use std::string;
use rustc_serialize::{json, base64};
#[derive(Debug)]
2015-11-01 17:59:42 -05:00
/// All the errors we can encounter while signing/verifying tokens
/// and a couple of custom one for when the token we are trying
/// to verify is invalid
2015-10-31 11:37:15 -04:00
pub enum Error {
EncodeJSON(json::EncoderError),
DecodeBase64(base64::FromBase64Error),
DecodeJSON(json::DecoderError),
Utf8(string::FromUtf8Error),
2015-11-01 17:59:42 -05:00
2015-11-01 17:31:46 -05:00
InvalidToken,
2015-11-02 16:22:21 -05:00
InvalidSignature,
WrongAlgorithmHeader
2015-10-31 11:37:15 -04:00
}
macro_rules! impl_from_error {
($f: ty, $e: expr) => {
impl From<$f> for Error {
fn from(f: $f) -> Error { $e(f) }
}
}
}
impl_from_error!(json::EncoderError, Error::EncodeJSON);
impl_from_error!(base64::FromBase64Error, Error::DecodeBase64);
impl_from_error!(json::DecoderError, Error::DecodeJSON);
impl_from_error!(string::FromUtf8Error, Error::Utf8);