//! Cryptographic primitives for the keystore.
//!
//! Provides encryption and key derivation functions.
pub use generate_salt;
pub use ;
/// Length of the salt (16 bytes).
pub const SALT_LEN: usize = 16;
/// Length of the encryption key (32 bytes / 256 bits).
pub const KEY_LEN: usize = 32;