28 lines
1.1 KiB
Rust
28 lines
1.1 KiB
Rust
mod canonicalization;
|
|
#[cfg(feature = "encryption")]
|
|
mod encryption;
|
|
mod error;
|
|
#[cfg(any(feature = "encryption", feature = "ikm-management"))]
|
|
mod ikm;
|
|
#[cfg(feature = "encryption")]
|
|
mod kdf;
|
|
#[cfg(any(feature = "encryption", feature = "ikm-management"))]
|
|
mod scheme;
|
|
#[cfg(feature = "encryption")]
|
|
mod storage;
|
|
|
|
#[cfg(feature = "encryption")]
|
|
pub use encryption::{decrypt, encrypt};
|
|
pub use error::Error;
|
|
#[cfg(any(feature = "encryption", feature = "ikm-management"))]
|
|
pub use ikm::{IkmId, InputKeyMaterial, InputKeyMaterialList};
|
|
#[cfg(any(feature = "encryption", feature = "ikm-management"))]
|
|
pub use scheme::Scheme;
|
|
|
|
#[cfg(feature = "ikm-management")]
|
|
const DEFAULT_IKM_DURATION: u64 = 60 * 60 * 24 * 7305; // In seconds, set to 7305 days (aprox. 20 years)
|
|
#[cfg(feature = "ikm-management")]
|
|
const DEFAULT_SCHEME: Scheme = Scheme::XChaCha20Poly1305WithBlake3;
|
|
|
|
#[cfg(not(feature = "i-understand-and-accept-the-risks"))]
|
|
compile_error!("This crate is experimental and therefore comes with absolutely no security guaranty. To use it anyway, enable the \"i-understand-and-accept-the-risks\" feature.");
|