aws_lc_rs/unstable.rs
1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0 OR ISC
3
4#![cfg(feature = "unstable")]
5#![allow(missing_docs)]
6
7//! Unstable aws-lc-rs features.
8//!
9//! # ⚠️ Warning
10//! Features contained within this module, or child modules are subject to changes, relocation,
11//! or removal across minor releases, and thus are not subject to semantic versioning policies.
12#[deprecated(note = "use `aws_lc_rs::kdf` instead")]
13pub mod kdf;
14
15#[deprecated(note = "use `aws_lc_rs::kem` instead")]
16pub mod kem;