62 lines
1.0 KiB
TOML
62 lines
1.0 KiB
TOML
[package]
|
|
name = "zkac-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4"
|
|
rand = { version = "0.8", features = ["std_rng"] }
|
|
zkac = { path = "..", features = ["fuzz-expose"] }
|
|
|
|
[lib]
|
|
name = "zkac_fuzz"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "handshake_respond"
|
|
path = "fuzz_targets/handshake_respond.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "handshake_initiator_complete"
|
|
path = "fuzz_targets/handshake_initiator_complete.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "session_decrypt"
|
|
path = "fuzz_targets/session_decrypt.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "replay_sequence"
|
|
path = "fuzz_targets/replay_sequence.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "crypto_deserialize"
|
|
path = "fuzz_targets/crypto_deserialize.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "bbs_verify_presentation"
|
|
path = "fuzz_targets/bbs_verify_presentation.rs"
|
|
test = false
|
|
doc = false
|
|
bench = false
|
|
|
|
[workspace]
|