axess-core 0.2.0

Core implementation for the axess library. Session state machine, multi-factor authentication engine, Cedar Policy evaluation, and pluggable storage backends. Use the `axess` facade crate unless you need direct access to internals.
Documentation
1
2
3
4
5
6
7
8
9
//! Re-export of the outbound OAuth client (`client_credentials` grant
//! with optional `private_key_jwt` client assertion). The implementation
//! lives in [`axess_factors::outbound_oauth_client`], co-located with
//! the JWT signing primitives and shared secret types it depends on;
//! see that module for the full documentation.

pub use axess_factors::outbound_oauth_client::{
    ClientAuthMethod, OAuthClientError, OutboundOAuthClient,
};