auths-core 0.1.1

Core cryptography and keychain integration for Auths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Port traits for dependency injection.

pub mod clock;
/// Config file I/O port for reading and writing `config.toml`.
pub mod config_store;
pub mod id;
/// Namespace verification port traits for proof-of-ownership across package ecosystems.
pub mod namespace;
pub mod network;
/// Pairing relay client port for session-based device pairing.
pub mod pairing;
/// Platform claim port traits for OAuth device flow, proof publishing, and registry submission.
pub mod platform;
pub mod ssh_agent;
pub mod storage;
/// Transparency log port trait for pluggable log backends.
pub mod transparency_log;