Skip to content

Commit

Permalink
band aid
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGould committed Aug 28, 2024
1 parent 486836c commit 0186344
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/kat_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ pub mod gen {
use super::*;

use crate::{
aead::{AeadCtxR, AeadCtxS, AesGcm128, AesGcm256, ChaCha20Poly1305, ExportOnlyAead},
aead::{AeadCtxR, AeadCtxS},
kdf::{labeled_extract, LabeledExpand},
setup::ExporterSecret,
OpModeS,
Expand Down Expand Up @@ -868,8 +868,17 @@ fn kat_test() {
// This unrolls into 36 `if let` statements
dispatch_testcase!(
tv,
(AesGcm128, AesGcm256, ChaCha20Poly1305, ExportOnlyAead),
(HkdfSha256, HkdfSha384, HkdfSha512),
(
crate::aead::AesGcm128,
crate::aead::AesGcm256,
crate::aead::ChaCha20Poly1305,
crate::aead::ExportOnlyAead
),
(
crate::kdf::HkdfSha256,
crate::kdf::HkdfSha384,
crate::kdf::HkdfSha512
),
(SecpK256HkdfSha256)
);

Expand Down

0 comments on commit 0186344

Please sign in to comment.