1 2 3 4 5 6 7 8 9 10 11 12
#![crate_name = "squaredb_enc"] #![crate_type = "lib"] const SALT_B64: &str = "c2FsdA"; const NONCE_SIZE: usize = 12; pub mod pbkdf; pub mod aes; pub mod err; #[cfg(test)] mod test_util;