Skip to content

Commit b6d070b

Browse files
authored
Remove Kyber, KDF from unstable (#747)
* Remove Kyber, KDF from unstable * Fix format & clippy
1 parent 2e8b158 commit b6d070b

File tree

4 files changed

+1
-53
lines changed

4 files changed

+1
-53
lines changed

aws-lc-rs/src/unstable.rs

-8
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,5 @@
99
//! The APIs under this module are not stable and may change in the future.
1010
//! They are not covered by semver guarantees.
1111
//!
12-
#[deprecated(note = "use `aws_lc_rs::kdf` instead")]
13-
/// TODO: Remove this module
14-
pub mod kdf;
15-
16-
#[deprecated(note = "use `aws_lc_rs::kem` instead")]
17-
/// TODO: Remove this module
18-
pub mod kem;
19-
2012
#[cfg(not(feature = "fips"))]
2113
pub mod signature;

aws-lc-rs/src/unstable/kdf.rs

-11
This file was deleted.

aws-lc-rs/src/unstable/kem.rs

-32
This file was deleted.

aws-lc-rs/tests/pqdsa_test.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,9 @@ macro_rules! mldsa_sigver_test {
3333
let public_key = test_case.consume_bytes("PUBLIC");
3434
let message = test_case.consume_bytes("MESSAGE");
3535
let signature = test_case.consume_bytes("SIGNATURE");
36-
let context = test_case.consume_bytes("CONTEXT");
36+
let _context = test_case.consume_bytes("CONTEXT");
3737
let expected_result = test_case.consume_bool("RESULT");
3838

39-
4039
let result =
4140
$verification.verify_sig(public_key.as_ref(), message.as_ref(), signature.as_ref());
4241
if expected_result {

0 commit comments

Comments
 (0)