From 0b6d0e0ddabaee6292ab902105bc66cc12f535fe Mon Sep 17 00:00:00 2001 From: "Jan Winkelmann (keks)" Date: Mon, 18 Nov 2024 10:41:04 +0100 Subject: [PATCH] Export fixed-size versions of HPKE Closes #419 --- libcrux-hkdf/src/hkdf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcrux-hkdf/src/hkdf.rs b/libcrux-hkdf/src/hkdf.rs index 83a0ca004..ebb8453a4 100644 --- a/libcrux-hkdf/src/hkdf.rs +++ b/libcrux-hkdf/src/hkdf.rs @@ -8,7 +8,7 @@ pub mod hacl; #[cfg(feature = "hacl")] mod impl_hacl; -use impl_hacl::{HkdfMode, HkdfSha2_256, HkdfSha2_384, HkdfSha2_512}; +pub use impl_hacl::{HkdfMode, HkdfSha2_256, HkdfSha2_384, HkdfSha2_512}; /// The HKDF algorithm defining the used hash function. #[derive(Copy, Clone, Debug, PartialEq)]