act_credentials/lib.rs
1//! Credential profiles, field definitions and storage for the ACT host.
2pub mod backend;
3pub mod expiry;
4pub mod field;
5// The file backend's own bookkeeping — the non-secret listing beside the store.
6// The `Index` type is not API: nothing outside reaches for it, and publishing it
7// would freeze a layout that exists to serve one backend. Its private-write
8// helper is, because "create at 0600, replace atomically, never through a file
9// we did not make" is the property every host-side secret file needs and it is
10// written and tested exactly once.
11pub(crate) mod index;
12
13pub use index::write_private;
14pub mod record;
15pub mod store;