Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/fuzz_hmac.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use hmac::{Hmac, Mac};
use sha2::Sha256;

// Fixed secret — we're testing the parsing/comparison path, not the secret itself
const SECRET: &[u8] = b"fuzz-test-secret-key-not-real";
const SECRET: &[u8] = b"fuzz-test-secret-key-not-real"; // scanner-allow: rust-secrets

fuzz_target!(|data: &[u8]| {
// Split data: first 32 bytes treated as a "claimed signature", rest as body
Expand Down
Loading