authx-core 0.1.2

Core authentication primitives for authx-rs: crypto, JWT/EdDSA, RBAC/ABAC, events, and models
Documentation
1
2
3
4
5
6
7
8
9
pub mod encryption;
pub mod hashing;
pub mod key_store;
pub mod signing;

pub use encryption::{decrypt, encrypt};
pub use hashing::{hash_password, sha256_hex, verify_password};
pub use key_store::KeyRotationStore;
pub use signing::{Claims, TokenSigner};