Skip to content

Commit f9f0741

Browse files
authoredMay 22, 2024··
Remove arbitrary HKDF info length limit (#424)
1 parent 0fb8b3f commit f9f0741

File tree

3 files changed

+29
-22
lines changed

3 files changed

+29
-22
lines changed
 

‎aws-lc-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fips = ["dep:aws-lc-fips-sys"]
4848
untrusted = { version = "0.7.1", optional = true }
4949
aws-lc-sys = { version = "0.17.0", path = "../aws-lc-sys", optional = true }
5050
aws-lc-fips-sys = { version = "0.12.0", path = "../aws-lc-fips-sys", optional = true }
51-
zeroize = "1.7"
51+
zeroize = { version = "1.7", features = ["zeroize_derive"] }
5252
mirai-annotations = "1.12.0"
5353
paste = "1.0.11"
5454

‎aws-lc-rs/src/hkdf.rs

+10-21
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,10 @@ pub static HKDF_SHA512: Algorithm = Algorithm(hmac::HMAC_SHA512);
7575
/// We set the limit to something tolerable, so that the Salt structure can be stack allocatable.
7676
const MAX_HKDF_SALT_LEN: usize = 80;
7777

78-
// This is needed so that the precise value can be provided in the documentation.
79-
macro_rules! max_hkdf_info_len {
80-
() => {
81-
102
82-
};
83-
}
84-
8578
/// General Info length's for HKDF don't normally exceed 256 bits.
86-
/// We set the limit to something tolerable, so that the memory passed into |`HKDF_expand`| is
87-
/// allocated on the stack.
88-
const MAX_HKDF_INFO_LEN: usize = max_hkdf_info_len!();
79+
/// We set the default capacity to a value larger than should be needed
80+
/// so that the value passed to |`HKDF_expand`| is only allocated once.
81+
const HKDF_INFO_DEFAULT_CAPACITY_LEN: usize = 300;
8982

9083
/// The maximum output size of a PRK computed by |`HKDF_extract`| is the maximum digest
9184
/// size that can be outputted by *AWS-LC*.
@@ -350,9 +343,8 @@ impl Prk {
350343
/// [HKDF-Expand]: https://tools.ietf.org/html/rfc5869#section-2.3
351344
///
352345
/// # Errors
353-
/// Returns `error::Unspecified` if either:
346+
/// Returns `error::Unspecified` if:
354347
/// * `len` is more than 255 times the digest algorithm's output length.
355-
#[doc = concat!(" * the combined lengths of the `info` slices is more than ", max_hkdf_info_len!(), " bytes.")]
356348
// # FIPS
357349
// The following conditions must be met:
358350
// * `Prk` must be constructed using `Salt::extract` prior to calling
@@ -368,16 +360,13 @@ impl Prk {
368360
if len_cached > 255 * self.algorithm.0.digest_algorithm().output_len {
369361
return Err(Unspecified);
370362
}
371-
let mut info_bytes = [0u8; MAX_HKDF_INFO_LEN];
363+
let mut info_bytes: Vec<u8> = Vec::with_capacity(HKDF_INFO_DEFAULT_CAPACITY_LEN);
372364
let mut info_len = 0;
373-
for byte_ary in info {
374-
let new_info_len = info_len + byte_ary.len();
375-
if new_info_len > MAX_HKDF_INFO_LEN {
376-
return Err(Unspecified);
377-
}
378-
info_bytes[info_len..new_info_len].copy_from_slice(byte_ary);
379-
info_len = new_info_len;
365+
for &byte_ary in info {
366+
info_bytes.extend_from_slice(byte_ary);
367+
info_len += byte_ary.len();
380368
}
369+
let info_bytes = info_bytes.into_boxed_slice();
381370
Ok(Okm {
382371
prk: self,
383372
info_bytes,
@@ -407,7 +396,7 @@ impl From<Okm<'_, Algorithm>> for Prk {
407396
/// use once.
408397
pub struct Okm<'a, L: KeyType> {
409398
prk: &'a Prk,
410-
info_bytes: [u8; MAX_HKDF_INFO_LEN],
399+
info_bytes: Box<[u8]>,
411400
info_len: usize,
412401
len: L,
413402
}

‎aws-lc-rs/tests/hkdf_test.rs

+18
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,24 @@ fn hkdf_output_len_tests() {
9292
}
9393
}
9494

95+
#[test]
96+
fn hkdf_info_len_tests() {
97+
for &alg in &[hkdf::HKDF_SHA256, hkdf::HKDF_SHA384, hkdf::HKDF_SHA512] {
98+
for info_length in (50..300).step_by(7) {
99+
let salt = hkdf::Salt::new(alg, &[]);
100+
let prk = salt.extract(&[]); // TODO: enforce minimum length.
101+
let info = vec![1u8; info_length];
102+
let info = &[info.as_slice()];
103+
104+
{
105+
let okm = prk.expand(info, My(2)).unwrap();
106+
let mut buf = [0u8; 2];
107+
assert_eq!(okm.fill(&mut buf), Ok(()));
108+
}
109+
}
110+
}
111+
}
112+
95113
#[test]
96114
/// Try creating various key types via HKDF.
97115
fn hkdf_key_types() {

0 commit comments

Comments
 (0)
Please sign in to comment.