aboutsummaryrefslogtreecommitdiff
path: root/_config.yml
blob: a8e784a4ce108c0e1520b2bb3252caa4d7efaaea (plain) (blame)
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
title: "ECTester"
description: "Tests support and behavior of elliptic curve cryptography implementations on JavaCards (TYPE_EC_FP and TYPE_EC_F2M) and on selected software libraries."
repository: crocs-muni/ECTester
theme: jekyll-theme-cayman

markdown: kramdown

exclude:
 - Gemfile
 - Gemfile.lock
 - README.md

collections:
  results:
    output: true
  performance:
    output: true

defaults:
 - scope:
     path: ""
   values:
     layout: "default"
 - scope:
     path: ""
     type: "results"
   values:
     permalink: /:collection/:path/
 - scope:
     path: "_results/default"
     type: "results"
   values:
     layout: default_suite
     category: Default
 - scope:
     path: "_results/wrong"
     type: "results"
   values:
     layout: wrong_suite
     category: Wrong
 - scope:
     path: "_results/invalid"
     type: "results"
   values:
     layout: invalid_suite
     category: Invalid
 - scope:
     path: "_results/composite"
     type: "results"
   values:
     layout: composite_suite
     category: Composite
 - scope:
     path: "_results/compression"
     type: "results"
   values:
     layout: compression_suite
     category: Compression
 - scope:
     path: "_results/twist"
     type: "results"
   values:
     layout: twist_suite
     category: Twist
 - scope:
     path: "_results/degenerate"
     type: "results"
   values:
     layout: degenerate_suite
     category: "Degenerate"
 - scope:
     path: "_results/wrong"
     type: "results"
   values:
     layout: wrong_suite
     category: Wrong
 - scope:
     path: "_results/cofactor"
     type: "results"
   values:
     layout: cofactor_suite
     category: Cofactor
 - scope:
     path: "_results/test-vectors"
     type: "results"
   values:
     layout: test_vectors_suite
     category: "Test vectors"
 - scope:
     path: "_results/edge-cases"
     type: "results"
   values:
     layout: edge_cases_suite
     category: "Edge cases"
 - scope:
     path: "_results/miscellaneous"
     type: "results"
   values:
     layout: miscellaneous_suite
     category: "Miscellaneous"
 - scope:
     path: "_results/signature"
     type: "results"
   values:
     layout: signature_suite
     category: "Signature"
 - scope:
     path: ""
     type: "performance"
   values:
     permalink: /:collection/:path/
 - scope:
     path: "_performance/ecdh"
     type: "performance"
   values:
     layout: ecdh_performance
     category: "ECDH performance"
 - scope:
     path: "_performance/ecdsa"
     type: "performance"
   values:
     layout: ecdsa_performance
     category: "ECDSA performance"
 - scope:
     path: "_performance/keygen"
     type: "performance"
   values:
     layout: keygen_performance
     category: "Key generation performance"