diff --git a/protocol/src/hkdf.rs b/protocol/src/hkdf.rs index 3cbee16..4deb622 100644 --- a/protocol/src/hkdf.rs +++ b/protocol/src/hkdf.rs @@ -31,7 +31,6 @@ pub struct Hkdf { impl Hkdf { /// Initialize a HKDF by performing the extract step. pub fn new(salt: &[u8], ikm: &[u8]) -> Self { - // Hardcoding SHA256 for now, might be worth parameterizing hash function. let mut hmac_engine: HmacEngine = HmacEngine::new(salt); hmac_engine.input(ikm); Self {