Skip to main content

mls_rs_crypto_hpke/
lib.rs

1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// Copyright by contributors to this project.
3// SPDX-License-Identifier: (Apache-2.0 OR MIT)
4
5#![cfg_attr(not(feature = "std"), no_std)]
6extern crate alloc;
7
8#[cfg(all(test, target_arch = "wasm32"))]
9wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser);
10
11pub mod context;
12pub mod dhkem;
13pub mod hpke;
14pub mod kdf;
15pub mod kem_combiner;
16
17#[cfg(feature = "test_utils")]
18mod test_utils;