-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathCargo.toml
More file actions
161 lines (140 loc) · 3.14 KB
/
Copy pathCargo.toml
File metadata and controls
161 lines (140 loc) · 3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
[package]
name = "commonware-cryptography-fuzz"
version.workspace = true
publish = false
edition.workspace = true
license.workspace = true
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { workspace = true, features = ["derive"] }
blake3.workspace = true
blst = { workspace = true, features = ["no-threads"] }
commonware-codec = { workspace = true, features = ["std"] }
commonware-cryptography = { workspace = true, features = ["std", "arbitrary", "fuzz"] }
commonware-math.workspace = true
commonware-parallel = { workspace = true, features = ["std"] }
commonware-utils = { workspace = true, features = ["std"] }
crc.workspace = true
ed25519-consensus.workspace = true
ed25519-zebra.workspace = true
libfuzzer-sys.workspace = true
num-rational.workspace = true
p256 = { workspace = true, features = ["ecdsa"] }
rand.workspace = true
sha2.workspace = true
zeroize.workspace = true
[[bin]]
name = "bls12381_decode"
path = "fuzz_targets/bls12381_decode.rs"
test = false
doc = false
bench = false
[[bin]]
name = "ed25519_decode"
path = "fuzz_targets/ed25519_decode.rs"
test = false
doc = false
bench = false
[[bin]]
name = "secp256r1_standard_decode"
path = "fuzz_targets/secp256r1_standard_decode.rs"
test = false
doc = false
bench = false
[[bin]]
name = "secp256r1_recoverable_decode"
path = "fuzz_targets/secp256r1_recoverable_decode.rs"
test = false
doc = false
bench = false
[[bin]]
name = "sha256_hasher"
path = "fuzz_targets/sha256_hasher.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bls12381_primitive_operations"
path = "fuzz_targets/bls12381_primitive_operations.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bloomfilter"
path = "fuzz_targets/bloomfilter.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bls12381_batch_operations"
path = "fuzz_targets/bls12381_batch_operations.rs"
test = false
doc = false
bench = false
[[bin]]
name = "ed25519_batch_verifier"
path = "fuzz_targets/ed25519_batch_verifier.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bls12381_threshold_operations"
path = "fuzz_targets/bls12381_threshold_operations.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bls12381_aggregate_operations"
path = "fuzz_targets/bls12381_aggregate_operations.rs"
test = false
doc = false
bench = false
[[bin]]
name = "blake3_hasher"
path = "fuzz_targets/blake3_hasher.rs"
test = false
doc = false
bench = false
[[bin]]
name = "lthash_operations"
path = "fuzz_targets/lthash_operations.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bls12381_tle"
path = "fuzz_targets/bls12381_tle.rs"
test = false
doc = false
bench = false
[[bin]]
name = "metamorph_lthash"
path = "fuzz_targets/metamorph_lthash.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bls12381_dkg_feldman_desmedt"
path = "fuzz_targets/bls12381_dkg_feldman_desmedt.rs"
test = false
doc = false
bench = false
[[bin]]
name = "bls12381_dkg_golden"
path = "fuzz_targets/bls12381_dkg_golden.rs"
test = false
doc = false
bench = false
[[bin]]
name = "crc32_hasher"
path = "fuzz_targets/crc32_hasher.rs"
test = false
doc = false
bench = false
[[bin]]
name = "zk"
path = "fuzz_targets/zk.rs"
test = false
doc = false
bench = false