fluxencrypt 0.6.0

A high-performance, secure encryption SDK for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Environment-based secret management functionality.
//!
//! This module provides secure ways to load cryptographic keys and other
//! secrets from environment variables, supporting various formats and
//! automatic detection.

pub mod provider;
pub mod secrets;

// Re-export main types
pub use provider::EnvSecretProvider;
pub use secrets::{EnvSecret, SecretFormat};