Skip to content

Commit

Permalink
Fix more fuzz compilation errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
korran committed Sep 13, 2023
1 parent 01baf77 commit 0e7c825
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/fuzz/src/fuzz_target_lms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct StructuredInput<'a> {

#[cfg(feature = "struct-aware")]
fn harness_structured(args: StructuredInput) {
let _result = Lms::default().verify_lms_signature(
let _result = Lms::default().verify_lms_signature_generic(
&mut Sha256SoftwareDriver::new(),
args.input,
&args.pub_key,
Expand Down
2 changes: 0 additions & 2 deletions drivers/fuzz/src/sha256.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

use caliptra_drivers::{Array4x8, CaliptraResult, Sha256, Sha256DigestOp};

use sha2::digest::block_buffer::Block;
use sha2::digest::consts::U64;
use sha2::Digest;

const SHA256_BLOCK_BYTE_SIZE: usize = 64;
Expand Down

0 comments on commit 0e7c825

Please sign in to comment.