We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636c5ea commit d43a2f0Copy full SHA for d43a2f0
src/lib.rs
@@ -32,6 +32,14 @@ use prelude::kdf::{labeled_expand, labeled_extract};
32
/// Re-export of the HPKE types from the [`hpke_rs_crypto`] crate.
33
pub use hpke_rs_crypto::types as HpkeTypes;
34
35
+/// Re-export of the RustCrypto crate.
36
+#[cfg(feature = "rustcrypto")]
37
+pub use hpke_rs_rust_crypto as rustcrypto;
38
+
39
+/// Re-export of the libcrux crate.
40
+#[cfg(feature = "libcrux")]
41
+pub use hpke_rs_libcrux as libcrux;
42
43
#[cfg(not(feature = "hpke-test-prng"))]
44
use rand_core::TryRngCore;
45
0 commit comments