entropy-auth 2026.7.31

Authentication and authorization for Entropy Softworks server and API projects
1
2
3
4
5
6
7
8
9
10
11
12
//! API authentication primitives.
//!
//! Provides API key generation and verification, HMAC-based request
//! signing, and bearer token extraction for HTTP API authentication.

mod api_key;
mod bearer;
mod hmac_auth;

pub use self::api_key::{ApiKey, ApiKeyError, ApiKeyHash};
pub use self::bearer::{BearerError, extract_bearer_token};
pub use self::hmac_auth::{HmacAuthError, HmacRequestSigner, HmacRequestVerifier};