compact_jwt 0.5.6

Minimal implementation of JWT for OIDC and other applications
Documentation
//! Error types.

use serde::{Deserialize, Serialize};
use std::fmt;

#[derive(Debug, Serialize, Clone, Deserialize, PartialEq)]
/// An error in the JWT library
pub enum JwtError {
    /// Invalid Token - May not be in correct compact form
    InvalidCompactFormat,
    /// Invalid Base64 encodidng of the token content
    InvalidBase64,
    /// Invalid token header
    InvalidHeaderFormat,
    /// Invalid signature over the header and payload
    InvalidSignature,
    /// Invalid JWT content
    InvalidJwt,
    /// Invalid PRT content
    InvalidPRT,
    /// Invalid Critical Extension present
    CriticalExtension,
    /// OpenSSL failure
    OpenSSLError,
    /// Cryptographic Failure
    CryptoError,
    /// Tpm Failure
    TpmError,
    /// Incorrect Algorithm for verification
    ValidatorAlgMismatch,
    /// Invalid JWT Key ID
    InvalidJwtKid,
    /// The listed JweEnc type is not valid for the type of inner
    /// decryption key we recieved
    JweEncMismatch,
    /// The Token has expired
    OidcTokenExpired,
    /// No embeded JWK is available
    EmbededJwkNotAvailable,
    /// Jwk public key export denied
    JwkPublicKeyDenied,
    /// X5c public key's cert chain didn't validate
    X5cPublicKeyDenied,
    /// Private key export denied
    PrivateKeyDenied,
    /// No leaf certificate is available in the chain
    X5cChainMissingLeaf,
    /// The provided x5c chain is not trusted
    X5cChainNotTrusted,
    /// The provided key was not valid
    InvalidKey,
    /// A required header value is not set
    CriticalMissingHeaderValue,
    /// The requested JWE cipher is not available.
    CipherUnavailable,
    /// The JWE algorithm does not match this decipher.
    AlgorithmUnavailable,
    /// The request to release the key is unable to be satisfied.
    UnableToReleaseKey,
    /// Serialisation / Deserialisation error
    Serde,
}

impl fmt::Display for JwtError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{self:?}")
    }
}

impl std::error::Error for JwtError {}