mirror of
https://github.com/saymrwulf/fips205-source.git
synced 2026-09-03 19:53:49 +00:00
48 lines
855 B
TOML
48 lines
855 B
TOML
[package]
|
|
name = "fips205-fuzz"
|
|
version = "0.4.1"
|
|
authors = ["Eric Schorn <eschorn@integritychain.com>"]
|
|
description = "Fuzz harness for FIPS 205 (release) ML-DSA"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
rust-version = "1.70"
|
|
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
rand_core = { version = "0.6.4", default-features = false }
|
|
rand_chacha = "0.3.1"
|
|
arbitrary = { version = "1.0", features = ["derive"] }
|
|
|
|
[dependencies.fips205]
|
|
path = ".."
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
#[workspace]
|
|
#members = ["."]
|
|
|
|
|
|
[profile.release]
|
|
opt-level = 0
|
|
debug = true
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
|
|
|
|
[[bin]]
|
|
name = "fuzz_verify"
|
|
path = "fuzz_targets/fuzz_verify.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_sign"
|
|
path = "fuzz_targets/fuzz_sign.rs"
|
|
test = false
|
|
doc = false
|