use alloc::boxed::Box;
use alloc::vec::Vec;
use pki_types::FipsStatus;
use zeroize::Zeroize;
use super::hmac;
use super::kx::ActiveKeyExchange;
use crate::enums::ProtocolVersion;
use crate::error::Error;
pub struct HkdfExpanderUsingHmac(Box<dyn hmac::Key>);
impl HkdfExpanderUsingHmac {
fn expand_unchecked(&self, info: &[&[u8]], output: &mut [u8]) {
let mut term = hmac::Tag::new(b"");
for (n, chunk) in output
.chunks_mut(self.0.tag_len())
.enumerate()
{
term = self
.0
.sign_concat(term.as_ref(), info, &[(n + 1) as u8]);
chunk.copy_from_slice(&term.as_ref()[..chunk.len()]);
}
}
}
impl HkdfExpander for HkdfExpanderUsingHmac {
fn expand_slice(&self, info: &[&[u8]], output: &mut [u8]) -> Result<(), OutputLengthError> {
if output.len() > 255 * self.0.tag_len() {
return Err(OutputLengthError);
}
self.expand_unchecked(info, output);
Ok(())
}
fn expand_block(&self, info: &[&[u8]]) -> OkmBlock {
let mut tag = [0u8; hmac::Tag::MAX_LEN];
let reduced_tag = &mut tag[..self.0.tag_len()];
self.expand_unchecked(info, reduced_tag);
OkmBlock::new(reduced_tag)
}
fn hash_len(&self) -> usize {
self.0.tag_len()
}
}
#[expect(clippy::exhaustive_structs)]
pub struct HkdfUsingHmac<'a>(pub &'a dyn hmac::Hmac);
impl Hkdf for HkdfUsingHmac<'_> {
fn extract_from_zero_ikm(&self, salt: Option<&[u8]>) -> Box<dyn HkdfExpander> {
let zeroes = [0u8; hmac::Tag::MAX_LEN];
Box::new(HkdfExpanderUsingHmac(self.0.with_key(
&self.extract_prk_from_secret(salt, &zeroes[..self.0.hash_output_len()]),
)))
}
fn extract_from_secret(&self, salt: Option<&[u8]>, secret: &[u8]) -> Box<dyn HkdfExpander> {
Box::new(HkdfExpanderUsingHmac(
self.0
.with_key(&self.extract_prk_from_secret(salt, secret)),
))
}
fn expander_for_okm(&self, okm: &OkmBlock) -> Box<dyn HkdfExpander> {
Box::new(HkdfExpanderUsingHmac(self.0.with_key(okm.as_ref())))
}
fn hmac_sign(&self, key: &OkmBlock, message: &[u8]) -> hmac::Tag {
self.0
.with_key(key.as_ref())
.sign(&[message])
}
}
impl HkdfPrkExtract for HkdfUsingHmac<'_> {
fn extract_prk_from_secret(&self, salt: Option<&[u8]>, secret: &[u8]) -> Vec<u8> {
let zeroes = [0u8; hmac::Tag::MAX_LEN];
let salt = match salt {
Some(salt) => salt,
None => &zeroes[..self.0.hash_output_len()],
};
self.0
.with_key(salt)
.sign(&[secret])
.as_ref()
.to_vec()
}
}
pub trait HkdfExpander: Send + Sync {
fn expand_slice(&self, info: &[&[u8]], output: &mut [u8]) -> Result<(), OutputLengthError>;
fn expand_block(&self, info: &[&[u8]]) -> OkmBlock;
fn hash_len(&self) -> usize;
}
pub trait Hkdf: Send + Sync {
fn extract_from_zero_ikm(&self, salt: Option<&[u8]>) -> Box<dyn HkdfExpander>;
fn extract_from_secret(&self, salt: Option<&[u8]>, secret: &[u8]) -> Box<dyn HkdfExpander>;
fn extract_from_kx_shared_secret(
&self,
salt: Option<&[u8]>,
kx: Box<dyn ActiveKeyExchange>,
peer_pub_key: &[u8],
) -> Result<Box<dyn HkdfExpander>, Error> {
Ok(self.extract_from_secret(
salt,
kx.complete_for_tls_version(peer_pub_key, ProtocolVersion::TLSv1_3)?
.secret_bytes(),
))
}
fn expander_for_okm(&self, okm: &OkmBlock) -> Box<dyn HkdfExpander>;
fn hmac_sign(&self, key: &OkmBlock, message: &[u8]) -> hmac::Tag;
fn fips(&self) -> FipsStatus {
FipsStatus::Unvalidated
}
}
pub trait HkdfPrkExtract: Hkdf {
fn extract_prk_from_secret(&self, salt: Option<&[u8]>, secret: &[u8]) -> Vec<u8>;
}
pub fn expand<T, const N: usize>(expander: &dyn HkdfExpander, info: &[&[u8]]) -> T
where
T: From<[u8; N]>,
{
let mut output = [0u8; N];
expander
.expand_slice(info, &mut output)
.expect("expand type parameter T is too large");
T::from(output)
}
#[derive(Clone)]
pub struct OkmBlock {
buf: [u8; Self::MAX_LEN],
used: usize,
}
impl OkmBlock {
pub fn new(bytes: &[u8]) -> Self {
let mut tag = Self {
buf: [0u8; Self::MAX_LEN],
used: bytes.len(),
};
tag.buf[..bytes.len()].copy_from_slice(bytes);
tag
}
pub const MAX_LEN: usize = 64;
}
impl Drop for OkmBlock {
#[inline(never)]
fn drop(&mut self) {
self.buf.zeroize();
}
}
impl AsRef<[u8]> for OkmBlock {
fn as_ref(&self) -> &[u8] {
&self.buf[..self.used]
}
}
#[expect(clippy::exhaustive_structs)]
#[derive(Debug)]
pub struct OutputLengthError;