arsenal-store (Rust)
Secret storage backends for ARSENAL - in-memory, encrypted file, and database
Purpose
Secret storage backends for ARSENAL - in-memory, encrypted file, and database
Read the arsenal credentials guide.
Source contract
| Field | Value |
|---|---|
| Package | arsenal-store |
| Version | 2.0.0 |
| Language | Rust |
| Runtime floor | 1.75 |
| Manifest | arsenal/crates/arsenal-store/Cargo.toml |
| Distribution | Source package; registry publication not verified |
Manifest SHA-256: 58046455ee75257d2c99d46eab4e699fc7f795841e830813cdb7ecb2b6d74918. The recorded Git revision identifies the containing repository; the manifest and entry-point hashes identify this working-tree snapshot.
Integration
Use the package root above from an authorized source checkout. Preserve sibling dependencies and their version/feature requirements. Install the runtime and compile the selected package before using its generated artifacts. The task guide describes configuration, trust boundaries, and error behavior. Test/conformance and deployment packages are supporting tools, not interchangeable production identity providers.
Features and optional dependencies
{
"default": [],
"postgres": [
"sqlx"
],
"sqlite": [
"sqlx"
]
}Exported entry points
The declarations below are extracted from the named entry files. This is a navigable source reference, not compiler-generated documentation of every transitive module. Feature gates and runtime requirements still apply. Private implementation files are not promoted to public APIs merely because they contain a public declaration.
arsenal/crates/arsenal-store/src/lib.rs
Source SHA-256: 9eef468c92a9dc9b45700316aa160791082cc0d1e66682d9a61faead9a37b6dc.
pub mod consent_store;
pub mod encrypted_file;
pub mod fingerprint_store;
pub mod key_resolver;
pub mod key_wrapper;
pub mod memory;
pub mod traits;
pub mod variable_resolver;
pub use consent_store::{ConsentStore, InMemoryConsentStore};
pub use encrypted_file::EncryptedFileStore;
pub use fingerprint_store::{FingerprintStore, InMemoryFingerprintStore};
pub use key_resolver::{InMemoryKeyResolver, PublicKeyResolver};
pub use key_wrapper::{KeyWrapper, SoftwareKeyWrapper};
pub use memory::InMemorySecretStore;
pub use traits::{SecretStore, SecretStoreError, SecretStoreResult};
pub use variable_resolver::{InMemoryVariableResolver, VariableResolver};
pub use consent_store::SqlConsentStore;
pub use fingerprint_store::SqlFingerprintStore;
pub use variable_resolver::SqlVariableResolver;
pub mod prelude {Module signatures and options
Browse the declared public source modules. This includes signatures, struct fields, enums, traits, method declarations, source comments and conditional attributes.