aion-server 0.1.0

Deployable HTTP, gRPC, WebSocket, and worker endpoint for Aion workflows.
1
2
3
4
5
6
7
8
9
//! Feature-gated JWT authentication support.

/// JWKS cache and authenticated-claim validation support.
pub mod jwks;
/// Bearer-token extraction and authorization middleware helpers.
pub mod middleware;

pub use jwks::{AuthenticatedClaims, JwksCache, JwksError};
pub use middleware::{AuthError, BearerToken, authorize_bearer_token, extract_http_bearer};