huskarl-core 0.1.0

Base library for huskarl (OAuth2 client) ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Cryptographic signing key traits.

mod error;
mod r#trait;

pub use error::JwsSignerError;
pub use r#trait::{
    BoxedAsymmetricJwsSigningKey, BoxedJwsSigningKey, HasPublicKey, JwsSigningKey,
    SigningKeyMetadata,
};