rage/age/src/keys.rs
2024-11-03 05:38:51 +00:00

44 lines
1 KiB
Rust

//! Key structs and serialization.
use age_core::{
format::FileKey,
primitives::hkdf,
secrecy::{ExposeSecret, SecretBox},
};
use rand::{rngs::OsRng, RngCore};
use crate::{
error::DecryptError,
format::HeaderV1,
primitives::{stream::PayloadKey, HmacKey},
protocol::Nonce,
};
const HEADER_KEY_LABEL: &[u8] = b"header";
const PAYLOAD_KEY_LABEL: &[u8] = b"payload";
pub(crate) fn new_file_key() -> FileKey {
FileKey::init_with_mut(|file_key| OsRng.fill_bytes(file_key))
}
pub(crate) fn mac_key(file_key: &FileKey) -> HmacKey {
HmacKey(SecretBox::new(Box::new(hkdf(
&[],
HEADER_KEY_LABEL,
file_key.expose_secret(),
))))
}
pub(crate) fn v1_payload_key(
file_key: &FileKey,
header: &HeaderV1,
nonce: &Nonce,
) -> Result<PayloadKey, DecryptError> {
// Verify the MAC
header.verify_mac(mac_key(file_key))?;
// Return the payload key
Ok(PayloadKey(
hkdf(nonce.as_ref(), PAYLOAD_KEY_LABEL, file_key.expose_secret()).into(),
))
}