use aes::{Aes128, BlockDecrypt, BlockEncrypt, NewBlockCipher}; // The raw key, keep secret! #[repr(transparent)] pub struct Key([u8; 16]); impl Key { /// Generate a random key #[cfg(feature = "std")] pub fn new() -> Result { let mut bytes = [0; 16]; getrandom::getrandom(&mut bytes)?; Ok(Self(bytes)) } pub fn into_aes(self) -> Aes128 { Aes128::new(&aes::Block::from(self.0)) } } /// The encrypted key, encrypted with AES using the salt and password #[derive(Clone, Copy, Default)] #[repr(transparent)] pub struct EncryptedKey([u8; 16]); /// Salt used to prevent rainbow table attacks on the encryption password #[derive(Clone, Copy, Default)] #[repr(transparent)] pub struct Salt([u8; 16]); impl Salt { /// Generate a random salt #[cfg(feature = "std")] pub fn new() -> Result { let mut bytes = [0; 16]; getrandom::getrandom(&mut bytes)?; Ok(Self(bytes)) } } /// The key slot, containing the salt and encrypted key that are used with one password #[derive(Clone, Copy, Default)] #[repr(packed)] pub struct KeySlot { salt: Salt, encrypted_key: EncryptedKey, } impl KeySlot { /// Get the password AES key (generated from the password and salt, encrypts the real key) pub fn password_aes(password: &[u8], salt: &Salt) -> Result { let mut key = Key([0; 16]); let mut params_builder = argon2::ParamsBuilder::new(); params_builder.output_len(key.0.len())?; let argon2 = argon2::Argon2::new( argon2::Algorithm::Argon2id, argon2::Version::V0x13, params_builder.params()?, ); argon2.hash_password_into(password, &salt.0, &mut key.0)?; Ok(key.into_aes()) } /// Create a new key slot from a password, salt, and encryption key pub fn new(password: &[u8], salt: Salt, key: Key) -> Result { let password_aes = Self::password_aes(password, &salt)?; // Encrypt the real AES key let mut block = aes::Block::from(key.0); password_aes.encrypt_block(&mut block); Ok(Self { salt, encrypted_key: EncryptedKey(block.into()), }) } /// Get the encryption key from this key slot pub fn key(&self, password: &[u8]) -> Result { let password_aes = Self::password_aes(password, &self.salt)?; // Decrypt the real AES key let mut block = aes::Block::from(self.encrypted_key.0); password_aes.decrypt_block(&mut block); Ok(Key(block.into())) } }