-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfuzz.yaml
72 lines (72 loc) · 2.09 KB
/
fuzz.yaml
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
base: ubuntu:16.04
language: go
version: "1.11"
checkout: github.com/mmcloughlin/cryptofuzz
setup:
- go get -u golang.org/x/crypto/... golang.org/x/sys/...
targets:
- name: aesgcm
corpus: ./target/aesgcm/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/aesgcm
- name: argon2
corpus: ./target/argon2/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/argon2
- name: blake2b
corpus: ./target/blake2b/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/blake2b
- name: blake2s
corpus: ./target/blake2s/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/blake2s
- name: chacha20poly1305
corpus: ./target/chacha20poly1305/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/chacha20poly1305
- name: curve25519
corpus: ./target/curve25519/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/curve25519
- name: p256
corpus: ./target/p256/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/p256
- name: poly1305
corpus: ./target/poly1305/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/poly1305
- name: salsa20
corpus: ./target/salsa20/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/salsa20
- name: sha1
corpus: ./target/sha1/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/sha1
- name: sha256
corpus: ./target/sha256/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/sha256
- name: sha3
corpus: ./target/sha3/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/sha3
- name: sha512
corpus: ./target/sha512/corpus
harness:
function: Fuzz
package: github.com/mmcloughlin/cryptofuzz/target/sha512