Trait josekit::jwe::JweAlgorithm[][src]

pub trait JweAlgorithm: Debug + Send + Sync {
    fn name(&self) -> &str;
fn box_clone(&self) -> Box<dyn JweAlgorithm>; }
Expand description

Represent a algorithm of JWE alg header claim.

Required methods

Return the “alg” (algorithm) header parameter value of JWE.

Implementors