-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.json
53 lines (49 loc) · 1.29 KB
/
config.json
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
{
"notes" : "./estream/Grain_r02",
"seed" : null,
"num-of-epochs" : 300,
"significance-level" : 1,
"tv-size" : 16,
"tv-count" : 1000,
"stream-a" : {
"type" : "block",
"generator" : "pcg32",
"init-frequency" : "only-once",
"algorithm" : "AES",
"round" : 2,
"block-size" : 16,
"plaintext-type" : {
"type" : "counter"
},
"key-size" : 16,
"key-type" : {
"type" : "random"
},
"iv-type" : "zeros"
},
"stream-b" : {
"type" : "pcg32-stream"
},
"backend" : {
"type" : "circuit",
"solver" : "global-search",
"function-set" : [ "NOP", "CONS", "NOT",
"AND", "NAND", "OR", "XOR", "NOR",
"SHIL", "SHIR", "ROTL", "ROTR",
"MASK" ],
"num-of-generations": 100,
"initializer" : {
"type" : "basic-initializer"
},
"mutator" : {
"type" : "basic-mutator",
"changes-of-functions" : 2,
"changes-of-arguments" : 2,
"changes-of-connectors" : 3
},
"evaluator" : {
"type" : "categories-evaluator",
"num-of-categories" : 8
}
}
}