CryptoDataHub 0.12.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CryptoDataHub-0.12.6.dist-info/LICENSE.txt +373 -0
- CryptoDataHub-0.12.6.dist-info/METADATA +119 -0
- CryptoDataHub-0.12.6.dist-info/RECORD +70 -0
- CryptoDataHub-0.12.6.dist-info/WHEEL +5 -0
- CryptoDataHub-0.12.6.dist-info/top_level.txt +1 -0
- cryptodatahub/__init__.py +0 -0
- cryptodatahub/__setup__.py +10 -0
- cryptodatahub/common/__init__.py +0 -0
- cryptodatahub/common/algorithm.py +164 -0
- cryptodatahub/common/attack-named.json +74 -0
- cryptodatahub/common/attack-type.json +58 -0
- cryptodatahub/common/authentication.json +113 -0
- cryptodatahub/common/block-cipher-mode.json +75 -0
- cryptodatahub/common/block-cipher.json +474 -0
- cryptodatahub/common/certificate-transparency-log.json +2394 -0
- cryptodatahub/common/client.json +20 -0
- cryptodatahub/common/dhparam-well-known.json +1975 -0
- cryptodatahub/common/ecparam-well-known.json +1868 -0
- cryptodatahub/common/entity.json +269 -0
- cryptodatahub/common/entity.py +110 -0
- cryptodatahub/common/exception.py +28 -0
- cryptodatahub/common/grade.py +200 -0
- cryptodatahub/common/hash.json +273 -0
- cryptodatahub/common/key-exchange.json +140 -0
- cryptodatahub/common/key.py +571 -0
- cryptodatahub/common/mac.json +404 -0
- cryptodatahub/common/named-group.json +902 -0
- cryptodatahub/common/parameter.py +149 -0
- cryptodatahub/common/root-certificate.json +19240 -0
- cryptodatahub/common/server.json +56 -0
- cryptodatahub/common/signature.json +233 -0
- cryptodatahub/common/standard.json +57 -0
- cryptodatahub/common/stores.py +323 -0
- cryptodatahub/common/types.py +524 -0
- cryptodatahub/common/utils.py +112 -0
- cryptodatahub/common/vulnerability.json +2 -0
- cryptodatahub/dnsrec/__init__.py +0 -0
- cryptodatahub/dnsrec/algorithm.json +114 -0
- cryptodatahub/dnsrec/algorithm.py +87 -0
- cryptodatahub/dnsrec/digest-type.json +26 -0
- cryptodatahub/dnsrec/rr-type.json +805 -0
- cryptodatahub/ssh/__init__.py +0 -0
- cryptodatahub/ssh/algorithm.py +194 -0
- cryptodatahub/ssh/compression-algorithm.json +24 -0
- cryptodatahub/ssh/elliptic-curve-identifier.json +50 -0
- cryptodatahub/ssh/encryption-algorithm.json +587 -0
- cryptodatahub/ssh/host-key-algorithm.json +482 -0
- cryptodatahub/ssh/kex-algorithm.json +709 -0
- cryptodatahub/ssh/mac-algorithm.json +566 -0
- cryptodatahub/tls/__init__.py +0 -0
- cryptodatahub/tls/algorithm.py +324 -0
- cryptodatahub/tls/certificate-compression-algorithm.json +14 -0
- cryptodatahub/tls/cipher-kind.json +171 -0
- cryptodatahub/tls/cipher-suite-extension.json +10 -0
- cryptodatahub/tls/cipher-suite.json +5098 -0
- cryptodatahub/tls/client.json +4757 -0
- cryptodatahub/tls/client.py +220 -0
- cryptodatahub/tls/compression-method.json +20 -0
- cryptodatahub/tls/ec-point-format.json +20 -0
- cryptodatahub/tls/extension-type.json +282 -0
- cryptodatahub/tls/grease-one-byte.json +34 -0
- cryptodatahub/tls/grease-two-byte.json +66 -0
- cryptodatahub/tls/hash-and-signature-algorithm.json +266 -0
- cryptodatahub/tls/named-curve.json +292 -0
- cryptodatahub/tls/next-protocol-name.json +20 -0
- cryptodatahub/tls/protocol-name.json +71 -0
- cryptodatahub/tls/psk-key-exchange-mode.json +10 -0
- cryptodatahub/tls/token-binding-paramater.json +14 -0
- cryptodatahub/tls/version.json +154 -0
- cryptodatahub/tls/version.py +17 -0
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ANONYMOUS_NONE": {
|
|
3
|
+
"_code_in_hex": "0x0000",
|
|
4
|
+
"code": 0,
|
|
5
|
+
"hash_algorithm": null,
|
|
6
|
+
"signature_algorithm": "anonymous"
|
|
7
|
+
},
|
|
8
|
+
"ANONYMOUS_MD5": {
|
|
9
|
+
"_code_in_hex": "0x0100",
|
|
10
|
+
"code": 256,
|
|
11
|
+
"hash_algorithm": "MD5",
|
|
12
|
+
"signature_algorithm": "anonymous"
|
|
13
|
+
},
|
|
14
|
+
"ANONYMOUS_SHA1": {
|
|
15
|
+
"_code_in_hex": "0x0200",
|
|
16
|
+
"code": 512,
|
|
17
|
+
"hash_algorithm": "SHA1",
|
|
18
|
+
"signature_algorithm": "anonymous"
|
|
19
|
+
},
|
|
20
|
+
"ANONYMOUS_SHA224": {
|
|
21
|
+
"_code_in_hex": "0x0300",
|
|
22
|
+
"code": 768,
|
|
23
|
+
"hash_algorithm": "SHA2_224",
|
|
24
|
+
"signature_algorithm": "anonymous"
|
|
25
|
+
},
|
|
26
|
+
"ANONYMOUS_SHA256": {
|
|
27
|
+
"_code_in_hex": "0x0400",
|
|
28
|
+
"code": 1024,
|
|
29
|
+
"hash_algorithm": "SHA2_256",
|
|
30
|
+
"signature_algorithm": "anonymous"
|
|
31
|
+
},
|
|
32
|
+
"ANONYMOUS_SHA384": {
|
|
33
|
+
"_code_in_hex": "0x0500",
|
|
34
|
+
"code": 1280,
|
|
35
|
+
"hash_algorithm": "SHA2_384",
|
|
36
|
+
"signature_algorithm": "anonymous"
|
|
37
|
+
},
|
|
38
|
+
"ANONYMOUS_SHA512": {
|
|
39
|
+
"_code_in_hex": "0x0006",
|
|
40
|
+
"code": 6,
|
|
41
|
+
"hash_algorithm": "SHA2_512",
|
|
42
|
+
"signature_algorithm": "anonymous"
|
|
43
|
+
},
|
|
44
|
+
"RSA_NONE": {
|
|
45
|
+
"_code_in_hex": "0x0001",
|
|
46
|
+
"code": 1,
|
|
47
|
+
"hash_algorithm": null,
|
|
48
|
+
"signature_algorithm": "RSA"
|
|
49
|
+
},
|
|
50
|
+
"RSA_MD5": {
|
|
51
|
+
"_code_in_hex": "0x0101",
|
|
52
|
+
"code": 257,
|
|
53
|
+
"hash_algorithm": "MD5",
|
|
54
|
+
"signature_algorithm": "RSA"
|
|
55
|
+
},
|
|
56
|
+
"RSA_SHA1": {
|
|
57
|
+
"_code_in_hex": "0x0201",
|
|
58
|
+
"code": 513,
|
|
59
|
+
"hash_algorithm": "SHA1",
|
|
60
|
+
"signature_algorithm": "RSA"
|
|
61
|
+
},
|
|
62
|
+
"RSA_SHA224": {
|
|
63
|
+
"_code_in_hex": "0x0301",
|
|
64
|
+
"code": 769,
|
|
65
|
+
"hash_algorithm": "SHA2_224",
|
|
66
|
+
"signature_algorithm": "RSA"
|
|
67
|
+
},
|
|
68
|
+
"RSA_SHA256": {
|
|
69
|
+
"_code_in_hex": "0x0401",
|
|
70
|
+
"code": 1025,
|
|
71
|
+
"hash_algorithm": "SHA2_256",
|
|
72
|
+
"signature_algorithm": "RSA"
|
|
73
|
+
},
|
|
74
|
+
"RSA_SHA384": {
|
|
75
|
+
"_code_in_hex": "0x0501",
|
|
76
|
+
"code": 1281,
|
|
77
|
+
"hash_algorithm": "SHA2_384",
|
|
78
|
+
"signature_algorithm": "RSA"
|
|
79
|
+
},
|
|
80
|
+
"RSA_SHA512": {
|
|
81
|
+
"_code_in_hex": "0x0601",
|
|
82
|
+
"code": 1537,
|
|
83
|
+
"hash_algorithm": "SHA2_512",
|
|
84
|
+
"signature_algorithm": "RSA"
|
|
85
|
+
},
|
|
86
|
+
"DSA_NONE": {
|
|
87
|
+
"_code_in_hex": "0x0002",
|
|
88
|
+
"code": 2,
|
|
89
|
+
"hash_algorithm": null,
|
|
90
|
+
"signature_algorithm": "DSS"
|
|
91
|
+
},
|
|
92
|
+
"DSA_MD5": {
|
|
93
|
+
"_code_in_hex": "0x0102",
|
|
94
|
+
"code": 258,
|
|
95
|
+
"hash_algorithm": "MD5",
|
|
96
|
+
"signature_algorithm": "DSS"
|
|
97
|
+
},
|
|
98
|
+
"DSA_SHA1": {
|
|
99
|
+
"_code_in_hex": "0x0202",
|
|
100
|
+
"code": 514,
|
|
101
|
+
"hash_algorithm": "SHA1",
|
|
102
|
+
"signature_algorithm": "DSS"
|
|
103
|
+
},
|
|
104
|
+
"DSA_SHA224": {
|
|
105
|
+
"_code_in_hex": "0x0302",
|
|
106
|
+
"code": 770,
|
|
107
|
+
"hash_algorithm": "SHA2_224",
|
|
108
|
+
"signature_algorithm": "DSS"
|
|
109
|
+
},
|
|
110
|
+
"DSA_SHA256": {
|
|
111
|
+
"_code_in_hex": "0x0402",
|
|
112
|
+
"code": 1026,
|
|
113
|
+
"hash_algorithm": "SHA2_256",
|
|
114
|
+
"signature_algorithm": "DSS"
|
|
115
|
+
},
|
|
116
|
+
"DSA_SHA384": {
|
|
117
|
+
"_code_in_hex": "0x0502",
|
|
118
|
+
"code": 1282,
|
|
119
|
+
"hash_algorithm": "SHA2_384",
|
|
120
|
+
"signature_algorithm": "DSS"
|
|
121
|
+
},
|
|
122
|
+
"DSA_SHA512": {
|
|
123
|
+
"_code_in_hex": "0x0602",
|
|
124
|
+
"code": 1538,
|
|
125
|
+
"hash_algorithm": "SHA2_512",
|
|
126
|
+
"signature_algorithm": "DSS"
|
|
127
|
+
},
|
|
128
|
+
"ECDSA_NONE": {
|
|
129
|
+
"_code_in_hex": "0x0003",
|
|
130
|
+
"code": 3,
|
|
131
|
+
"hash_algorithm": null,
|
|
132
|
+
"signature_algorithm": "ECDSA"
|
|
133
|
+
},
|
|
134
|
+
"ECDSA_MD5": {
|
|
135
|
+
"_code_in_hex": "0x0103",
|
|
136
|
+
"code": 259,
|
|
137
|
+
"hash_algorithm": "MD5",
|
|
138
|
+
"signature_algorithm": "ECDSA"
|
|
139
|
+
},
|
|
140
|
+
"ECDSA_SHA1": {
|
|
141
|
+
"_code_in_hex": "0x0203",
|
|
142
|
+
"code": 515,
|
|
143
|
+
"hash_algorithm": "SHA1",
|
|
144
|
+
"signature_algorithm": "ECDSA"
|
|
145
|
+
},
|
|
146
|
+
"ECDSA_SHA224": {
|
|
147
|
+
"_code_in_hex": "0x0303",
|
|
148
|
+
"code": 771,
|
|
149
|
+
"hash_algorithm": "SHA2_224",
|
|
150
|
+
"signature_algorithm": "ECDSA"
|
|
151
|
+
},
|
|
152
|
+
"ECDSA_SHA256": {
|
|
153
|
+
"_code_in_hex": "0x0403",
|
|
154
|
+
"code": 1027,
|
|
155
|
+
"hash_algorithm": "SHA2_256",
|
|
156
|
+
"signature_algorithm": "ECDSA"
|
|
157
|
+
},
|
|
158
|
+
"ECDSA_SHA384": {
|
|
159
|
+
"_code_in_hex": "0x0503",
|
|
160
|
+
"code": 1283,
|
|
161
|
+
"hash_algorithm": "SHA2_384",
|
|
162
|
+
"signature_algorithm": "ECDSA"
|
|
163
|
+
},
|
|
164
|
+
"ECDSA_SHA512": {
|
|
165
|
+
"_code_in_hex": "0x0603",
|
|
166
|
+
"code": 1539,
|
|
167
|
+
"hash_algorithm": "SHA2_512",
|
|
168
|
+
"signature_algorithm": "ECDSA"
|
|
169
|
+
},
|
|
170
|
+
"ECDSA_BRAINPOOLP256R1TLS13_SHA256": {
|
|
171
|
+
"_code_in_hex": "0x081a",
|
|
172
|
+
"code": 2074,
|
|
173
|
+
"hash_algorithm": "SHA2_256",
|
|
174
|
+
"signature_algorithm": "ECDSA"
|
|
175
|
+
},
|
|
176
|
+
"ECDSA_BRAINPOOLP384R1TLS13_SHA384": {
|
|
177
|
+
"_code_in_hex": "0x081b",
|
|
178
|
+
"code": 2075,
|
|
179
|
+
"hash_algorithm": "SHA2_384",
|
|
180
|
+
"signature_algorithm": "ECDSA"
|
|
181
|
+
},
|
|
182
|
+
"ECDSA_BRAINPOOLP512R1TLS13_SHA512": {
|
|
183
|
+
"_code_in_hex": "0x081c",
|
|
184
|
+
"code": 2076,
|
|
185
|
+
"hash_algorithm": "SHA2_512",
|
|
186
|
+
"signature_algorithm": "ECDSA"
|
|
187
|
+
},
|
|
188
|
+
"GOST_R3410_01": {
|
|
189
|
+
"_code_in_hex": "0x00ed",
|
|
190
|
+
"code": 237,
|
|
191
|
+
"hash_algorithm": "GOST_R3411_94",
|
|
192
|
+
"signature_algorithm": "GOST_R3410_01"
|
|
193
|
+
},
|
|
194
|
+
"OLD_GOST_R3410_12_256": {
|
|
195
|
+
"_code_in_hex": "0x00ee",
|
|
196
|
+
"code": 238,
|
|
197
|
+
"hash_algorithm": "GOST_R3411_12_256",
|
|
198
|
+
"signature_algorithm": "GOST_R3410_12_256"
|
|
199
|
+
},
|
|
200
|
+
"OLD_GOST_R3410_12_512": {
|
|
201
|
+
"_code_in_hex": "0x00ef",
|
|
202
|
+
"code": 239,
|
|
203
|
+
"hash_algorithm": "GOST_R3411_12_512",
|
|
204
|
+
"signature_algorithm": "GOST_R3410_12_512"
|
|
205
|
+
},
|
|
206
|
+
"GOST_R3410_12_256": {
|
|
207
|
+
"_code_in_hex": "0x4008",
|
|
208
|
+
"code": 16392,
|
|
209
|
+
"hash_algorithm": "GOST_R3411_12_256",
|
|
210
|
+
"signature_algorithm": "GOST_R3410_12_256"
|
|
211
|
+
},
|
|
212
|
+
"GOST_R3410_12_512": {
|
|
213
|
+
"_code_in_hex": "0x4108",
|
|
214
|
+
"code": 16648,
|
|
215
|
+
"hash_algorithm": "GOST_R3411_12_512",
|
|
216
|
+
"signature_algorithm": "GOST_R3410_12_512"
|
|
217
|
+
},
|
|
218
|
+
"RSA_PSS_RSAE_SHA256": {
|
|
219
|
+
"_code_in_hex": "0x0804",
|
|
220
|
+
"code": 2052,
|
|
221
|
+
"hash_algorithm": "SHA2_256",
|
|
222
|
+
"signature_algorithm": "RSA"
|
|
223
|
+
},
|
|
224
|
+
"RSA_PSS_RSAE_SHA384": {
|
|
225
|
+
"_code_in_hex": "0x0805",
|
|
226
|
+
"code": 2053,
|
|
227
|
+
"hash_algorithm": "SHA2_384",
|
|
228
|
+
"signature_algorithm": "RSA"
|
|
229
|
+
},
|
|
230
|
+
"RSA_PSS_RSAE_SHA512": {
|
|
231
|
+
"_code_in_hex": "0x0806",
|
|
232
|
+
"code": 2054,
|
|
233
|
+
"hash_algorithm": "SHA2_512",
|
|
234
|
+
"signature_algorithm": "RSA"
|
|
235
|
+
},
|
|
236
|
+
"ED25519": {
|
|
237
|
+
"_code_in_hex": "0x0807",
|
|
238
|
+
"code": 2055,
|
|
239
|
+
"hash_algorithm": "SHA2_512",
|
|
240
|
+
"signature_algorithm": "EDDSA"
|
|
241
|
+
},
|
|
242
|
+
"ED448": {
|
|
243
|
+
"_code_in_hex": "0x0808",
|
|
244
|
+
"code": 2056,
|
|
245
|
+
"hash_algorithm": "SHAKE_256",
|
|
246
|
+
"signature_algorithm": "EDDSA"
|
|
247
|
+
},
|
|
248
|
+
"RSA_PSS_PSS_SHA256": {
|
|
249
|
+
"_code_in_hex": "0x0809",
|
|
250
|
+
"code": 2057,
|
|
251
|
+
"hash_algorithm": "SHA2_256",
|
|
252
|
+
"signature_algorithm": "RSA"
|
|
253
|
+
},
|
|
254
|
+
"RSA_PSS_PSS_SHA384": {
|
|
255
|
+
"_code_in_hex": "0x080a",
|
|
256
|
+
"code": 2058,
|
|
257
|
+
"hash_algorithm": "SHA2_384",
|
|
258
|
+
"signature_algorithm": "RSA"
|
|
259
|
+
},
|
|
260
|
+
"RSA_PSS_PSS_SHA512": {
|
|
261
|
+
"_code_in_hex": "0x080b",
|
|
262
|
+
"code": 2059,
|
|
263
|
+
"hash_algorithm": "SHA2_512",
|
|
264
|
+
"signature_algorithm": "RSA"
|
|
265
|
+
}
|
|
266
|
+
}
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
{
|
|
2
|
+
"SECT163K1": {
|
|
3
|
+
"_code_in_hex": "0x0001",
|
|
4
|
+
"code": 1,
|
|
5
|
+
"named_group": "SECT163K1"
|
|
6
|
+
},
|
|
7
|
+
"SECT163R1": {
|
|
8
|
+
"_code_in_hex": "0x0002",
|
|
9
|
+
"code": 2,
|
|
10
|
+
"named_group": "SECT163R1"
|
|
11
|
+
},
|
|
12
|
+
"SECT163R2": {
|
|
13
|
+
"_code_in_hex": "0x0003",
|
|
14
|
+
"code": 3,
|
|
15
|
+
"named_group": "SECT163R2"
|
|
16
|
+
},
|
|
17
|
+
"SECT193R1": {
|
|
18
|
+
"_code_in_hex": "0x0004",
|
|
19
|
+
"code": 4,
|
|
20
|
+
"named_group": "SECT193R1"
|
|
21
|
+
},
|
|
22
|
+
"SECT193R2": {
|
|
23
|
+
"_code_in_hex": "0x0005",
|
|
24
|
+
"code": 5,
|
|
25
|
+
"named_group": "SECT193R2"
|
|
26
|
+
},
|
|
27
|
+
"SECT233K1": {
|
|
28
|
+
"_code_in_hex": "0x0006",
|
|
29
|
+
"code": 6,
|
|
30
|
+
"named_group": "SECT233K1"
|
|
31
|
+
},
|
|
32
|
+
"SECT233R1": {
|
|
33
|
+
"_code_in_hex": "0x0007",
|
|
34
|
+
"code": 7,
|
|
35
|
+
"named_group": "SECT233R1"
|
|
36
|
+
},
|
|
37
|
+
"SECT239K1": {
|
|
38
|
+
"_code_in_hex": "0x0008",
|
|
39
|
+
"code": 8,
|
|
40
|
+
"named_group": "SECT239K1"
|
|
41
|
+
},
|
|
42
|
+
"SECT283K1": {
|
|
43
|
+
"_code_in_hex": "0x0009",
|
|
44
|
+
"code": 9,
|
|
45
|
+
"named_group": "SECT283K1"
|
|
46
|
+
},
|
|
47
|
+
"SECT283R1": {
|
|
48
|
+
"_code_in_hex": "0x000a",
|
|
49
|
+
"code": 10,
|
|
50
|
+
"named_group": "SECT283R1"
|
|
51
|
+
},
|
|
52
|
+
"SECT409K1": {
|
|
53
|
+
"_code_in_hex": "0x000b",
|
|
54
|
+
"code": 11,
|
|
55
|
+
"named_group": "SECT409K1"
|
|
56
|
+
},
|
|
57
|
+
"SECT409R1": {
|
|
58
|
+
"_code_in_hex": "0x000c",
|
|
59
|
+
"code": 12,
|
|
60
|
+
"named_group": "SECT409R1"
|
|
61
|
+
},
|
|
62
|
+
"SECT571K1": {
|
|
63
|
+
"_code_in_hex": "0x000d",
|
|
64
|
+
"code": 13,
|
|
65
|
+
"named_group": "SECT571K1"
|
|
66
|
+
},
|
|
67
|
+
"SECT571R1": {
|
|
68
|
+
"_code_in_hex": "0x000e",
|
|
69
|
+
"code": 14,
|
|
70
|
+
"named_group": "SECT571R1"
|
|
71
|
+
},
|
|
72
|
+
"SECP160K1": {
|
|
73
|
+
"_code_in_hex": "0x000f",
|
|
74
|
+
"code": 15,
|
|
75
|
+
"named_group": "SECP160K1"
|
|
76
|
+
},
|
|
77
|
+
"SECP160R1": {
|
|
78
|
+
"_code_in_hex": "0x0010",
|
|
79
|
+
"code": 16,
|
|
80
|
+
"named_group": "SECP160R1"
|
|
81
|
+
},
|
|
82
|
+
"SECP160R2": {
|
|
83
|
+
"_code_in_hex": "0x0011",
|
|
84
|
+
"code": 17,
|
|
85
|
+
"named_group": "SECP160R2"
|
|
86
|
+
},
|
|
87
|
+
"SECP192K1": {
|
|
88
|
+
"_code_in_hex": "0x0012",
|
|
89
|
+
"code": 18,
|
|
90
|
+
"named_group": "SECP192K1"
|
|
91
|
+
},
|
|
92
|
+
"SECP192R1": {
|
|
93
|
+
"_code_in_hex": "0x0013",
|
|
94
|
+
"code": 19,
|
|
95
|
+
"named_group": "PRIME192V1"
|
|
96
|
+
},
|
|
97
|
+
"SECP224K1": {
|
|
98
|
+
"_code_in_hex": "0x0014",
|
|
99
|
+
"code": 20,
|
|
100
|
+
"named_group": "SECP224K1"
|
|
101
|
+
},
|
|
102
|
+
"SECP224R1": {
|
|
103
|
+
"_code_in_hex": "0x0015",
|
|
104
|
+
"code": 21,
|
|
105
|
+
"named_group": "SECP224R1"
|
|
106
|
+
},
|
|
107
|
+
"SECP256K1": {
|
|
108
|
+
"_code_in_hex": "0x0016",
|
|
109
|
+
"code": 22,
|
|
110
|
+
"named_group": "SECP256K1"
|
|
111
|
+
},
|
|
112
|
+
"SECP256R1": {
|
|
113
|
+
"_code_in_hex": "0x0017",
|
|
114
|
+
"code": 23,
|
|
115
|
+
"named_group": "PRIME256V1"
|
|
116
|
+
},
|
|
117
|
+
"SECP384R1": {
|
|
118
|
+
"_code_in_hex": "0x0018",
|
|
119
|
+
"code": 24,
|
|
120
|
+
"named_group": "SECP384R1"
|
|
121
|
+
},
|
|
122
|
+
"SECP521R1": {
|
|
123
|
+
"_code_in_hex": "0x0019",
|
|
124
|
+
"code": 25,
|
|
125
|
+
"named_group": "SECP521R1"
|
|
126
|
+
},
|
|
127
|
+
"BRAINPOOLP256R1": {
|
|
128
|
+
"_code_in_hex": "0x001a",
|
|
129
|
+
"code": 26,
|
|
130
|
+
"named_group": "BRAINPOOLP256R1"
|
|
131
|
+
},
|
|
132
|
+
"BRAINPOOLP384R1": {
|
|
133
|
+
"_code_in_hex": "0x001b",
|
|
134
|
+
"code": 27,
|
|
135
|
+
"named_group": "BRAINPOOLP384R1"
|
|
136
|
+
},
|
|
137
|
+
"BRAINPOOLP512R1": {
|
|
138
|
+
"_code_in_hex": "0x001c",
|
|
139
|
+
"code": 28,
|
|
140
|
+
"named_group": "BRAINPOOLP512R1"
|
|
141
|
+
},
|
|
142
|
+
"X25519": {
|
|
143
|
+
"_code_in_hex": "0x001d",
|
|
144
|
+
"code": 29,
|
|
145
|
+
"named_group": "CURVE25519"
|
|
146
|
+
},
|
|
147
|
+
"X448": {
|
|
148
|
+
"_code_in_hex": "0x001e",
|
|
149
|
+
"code": 30,
|
|
150
|
+
"named_group": "CURVE448"
|
|
151
|
+
},
|
|
152
|
+
"GC256A": {
|
|
153
|
+
"_code_in_hex": "0x0022",
|
|
154
|
+
"code": 34,
|
|
155
|
+
"named_group": "GC256A"
|
|
156
|
+
},
|
|
157
|
+
"GC256B": {
|
|
158
|
+
"_code_in_hex": "0x0023",
|
|
159
|
+
"code": 35,
|
|
160
|
+
"named_group": "GC256B"
|
|
161
|
+
},
|
|
162
|
+
"GC256C": {
|
|
163
|
+
"_code_in_hex": "0x0024",
|
|
164
|
+
"code": 36,
|
|
165
|
+
"named_group": "GC256C"
|
|
166
|
+
},
|
|
167
|
+
"GC256D": {
|
|
168
|
+
"_code_in_hex": "0x0025",
|
|
169
|
+
"code": 37,
|
|
170
|
+
"named_group": "GC256D"
|
|
171
|
+
},
|
|
172
|
+
"GC512A": {
|
|
173
|
+
"_code_in_hex": "0x0026",
|
|
174
|
+
"code": 38,
|
|
175
|
+
"named_group": "GC512A"
|
|
176
|
+
},
|
|
177
|
+
"GC512B": {
|
|
178
|
+
"_code_in_hex": "0x0027",
|
|
179
|
+
"code": 39,
|
|
180
|
+
"named_group": "GC512B"
|
|
181
|
+
},
|
|
182
|
+
"GC512C": {
|
|
183
|
+
"_code_in_hex": "0x0028",
|
|
184
|
+
"code": 40,
|
|
185
|
+
"named_group": "GC512C"
|
|
186
|
+
},
|
|
187
|
+
"FFDHE2048": {
|
|
188
|
+
"_code_in_hex": "0x0100",
|
|
189
|
+
"code": 256,
|
|
190
|
+
"named_group": "FFDHE2048"
|
|
191
|
+
},
|
|
192
|
+
"FFDHE3072": {
|
|
193
|
+
"_code_in_hex": "0x0101",
|
|
194
|
+
"code": 257,
|
|
195
|
+
"named_group": "FFDHE3072"
|
|
196
|
+
},
|
|
197
|
+
"FFDHE4096": {
|
|
198
|
+
"_code_in_hex": "0x0102",
|
|
199
|
+
"code": 258,
|
|
200
|
+
"named_group": "FFDHE4096"
|
|
201
|
+
},
|
|
202
|
+
"FFDHE6144": {
|
|
203
|
+
"_code_in_hex": "0x0103",
|
|
204
|
+
"code": 259,
|
|
205
|
+
"named_group": "FFDHE6144"
|
|
206
|
+
},
|
|
207
|
+
"FFDHE8192": {
|
|
208
|
+
"_code_in_hex": "0x0104",
|
|
209
|
+
"code": 260,
|
|
210
|
+
"named_group": "FFDHE8192"
|
|
211
|
+
},
|
|
212
|
+
"CECPQ2": {
|
|
213
|
+
"_code_in_hex": "0x4138",
|
|
214
|
+
"code": 16696,
|
|
215
|
+
"named_group": "CECPQ2"
|
|
216
|
+
},
|
|
217
|
+
"ARBITRARY_EXPLICIT_PRIME_CURVES": {
|
|
218
|
+
"_code_in_hex": "0xff01",
|
|
219
|
+
"code": 65281,
|
|
220
|
+
"named_group": null
|
|
221
|
+
},
|
|
222
|
+
"ARBITRARY_EXPLICIT_CHAR2_CURVES": {
|
|
223
|
+
"_code_in_hex": "0xff02",
|
|
224
|
+
"code": 65282,
|
|
225
|
+
"named_group": null
|
|
226
|
+
},
|
|
227
|
+
"KYBER_512_R3": {
|
|
228
|
+
"_code_in_hex": "0x023a",
|
|
229
|
+
"code": 570,
|
|
230
|
+
"named_group": "KYBER_512_R3"
|
|
231
|
+
},
|
|
232
|
+
"KYBER_768_R3": {
|
|
233
|
+
"_code_in_hex": "0x023c",
|
|
234
|
+
"code": 572,
|
|
235
|
+
"named_group": "KYBER_768_R3"
|
|
236
|
+
},
|
|
237
|
+
"KYBER_1024_R3": {
|
|
238
|
+
"_code_in_hex": "0x023d",
|
|
239
|
+
"code": 573,
|
|
240
|
+
"named_group": "KYBER_1024_R3"
|
|
241
|
+
},
|
|
242
|
+
"SECP256R1_ML_KEM_768": {
|
|
243
|
+
"_code_in_hex": "0x11eb",
|
|
244
|
+
"code": 4587,
|
|
245
|
+
"named_group": "SECP256R1_ML_KEM_768"
|
|
246
|
+
},
|
|
247
|
+
"X25519_ML_KEM_768": {
|
|
248
|
+
"_code_in_hex": "0x11ec",
|
|
249
|
+
"code": 4588,
|
|
250
|
+
"named_group": "X25519_ML_KEM_768"
|
|
251
|
+
},
|
|
252
|
+
"X25519_KYBER_512_R3_CLOUDFLARE": {
|
|
253
|
+
"_code_in_hex": "0xfe30",
|
|
254
|
+
"code": 65072,
|
|
255
|
+
"named_group": "X25519_KYBER_512_R3"
|
|
256
|
+
},
|
|
257
|
+
"X25519_KYBER_768_R3_CLOUDFLARE": {
|
|
258
|
+
"_code_in_hex": "0xfe31",
|
|
259
|
+
"code": 65073,
|
|
260
|
+
"named_group": "X25519_KYBER_768_R3"
|
|
261
|
+
},
|
|
262
|
+
"SECP256R1_KYBER_512_R3": {
|
|
263
|
+
"_code_in_hex": "0x2f3a",
|
|
264
|
+
"code": 12090,
|
|
265
|
+
"named_group": "SECP256R1_KYBER_512_R3"
|
|
266
|
+
},
|
|
267
|
+
"SECP256R1_KYBER_768_R3": {
|
|
268
|
+
"_code_in_hex": "0x639a",
|
|
269
|
+
"code": 25498,
|
|
270
|
+
"named_group": "SECP256R1_KYBER_768_R3"
|
|
271
|
+
},
|
|
272
|
+
"SECP384R1_KYBER_768_R3": {
|
|
273
|
+
"_code_in_hex": "0x2f3c",
|
|
274
|
+
"code": 12092,
|
|
275
|
+
"named_group": "SECP384R1_KYBER_768_R3"
|
|
276
|
+
},
|
|
277
|
+
"SECP521R1_KYBER_1024_R3": {
|
|
278
|
+
"_code_in_hex": "0x2f3d",
|
|
279
|
+
"code": 12093,
|
|
280
|
+
"named_group": "SECP521R1_KYBER_1024_R3"
|
|
281
|
+
},
|
|
282
|
+
"X25519_KYBER_512_R3": {
|
|
283
|
+
"_code_in_hex": "0x2f39",
|
|
284
|
+
"code": 12089,
|
|
285
|
+
"named_group": "X25519_KYBER_512_R3"
|
|
286
|
+
},
|
|
287
|
+
"X25519_KYBER_768_R3": {
|
|
288
|
+
"_code_in_hex": "0x6399",
|
|
289
|
+
"code": 25497,
|
|
290
|
+
"named_group": "X25519_KYBER_768_R3"
|
|
291
|
+
}
|
|
292
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"HTTP_1_1": {
|
|
3
|
+
"code": "http/1.1"
|
|
4
|
+
},
|
|
5
|
+
"SPDY_1": {
|
|
6
|
+
"code": "spdy/1"
|
|
7
|
+
},
|
|
8
|
+
"SPDY_2": {
|
|
9
|
+
"code": "spdy/2"
|
|
10
|
+
},
|
|
11
|
+
"SPDY_3": {
|
|
12
|
+
"code": "spdy/3"
|
|
13
|
+
},
|
|
14
|
+
"SPDY_3_1": {
|
|
15
|
+
"code": "spdy/3.1"
|
|
16
|
+
},
|
|
17
|
+
"SPDY_4_A_2": {
|
|
18
|
+
"code": "spdy/4a2"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"C_WEBRTC": {
|
|
3
|
+
"code": "c-webrtc"
|
|
4
|
+
},
|
|
5
|
+
"COAP": {
|
|
6
|
+
"code": "coap"
|
|
7
|
+
},
|
|
8
|
+
"FTP": {
|
|
9
|
+
"code": "ftp"
|
|
10
|
+
},
|
|
11
|
+
"H2": {
|
|
12
|
+
"code": "h2"
|
|
13
|
+
},
|
|
14
|
+
"H2_14": {
|
|
15
|
+
"code": "h2-14"
|
|
16
|
+
},
|
|
17
|
+
"H2_15": {
|
|
18
|
+
"code": "h2-15"
|
|
19
|
+
},
|
|
20
|
+
"H2_16": {
|
|
21
|
+
"code": "h2-16"
|
|
22
|
+
},
|
|
23
|
+
"H2C": {
|
|
24
|
+
"code": "h2c"
|
|
25
|
+
},
|
|
26
|
+
"HTTP_0_9": {
|
|
27
|
+
"code": "http/0.9"
|
|
28
|
+
},
|
|
29
|
+
"HTTP_1_0": {
|
|
30
|
+
"code": "http/1.0"
|
|
31
|
+
},
|
|
32
|
+
"HTTP_1_1": {
|
|
33
|
+
"code": "http/1.1"
|
|
34
|
+
},
|
|
35
|
+
"IMAP": {
|
|
36
|
+
"code": "imap"
|
|
37
|
+
},
|
|
38
|
+
"MANAGESIEVE": {
|
|
39
|
+
"code": "managesieve"
|
|
40
|
+
},
|
|
41
|
+
"POP3": {
|
|
42
|
+
"code": "pop3"
|
|
43
|
+
},
|
|
44
|
+
"SPDY_1": {
|
|
45
|
+
"code": "spdy/1"
|
|
46
|
+
},
|
|
47
|
+
"SPDY_2": {
|
|
48
|
+
"code": "spdy/2"
|
|
49
|
+
},
|
|
50
|
+
"SPDY_3": {
|
|
51
|
+
"code": "spdy/3"
|
|
52
|
+
},
|
|
53
|
+
"SPDY_3_1": {
|
|
54
|
+
"code": "spdy/3.1"
|
|
55
|
+
},
|
|
56
|
+
"STUN_NAT_DISCOVERY": {
|
|
57
|
+
"code": "stun.nat-discovery"
|
|
58
|
+
},
|
|
59
|
+
"STUN_TURN": {
|
|
60
|
+
"code": "stun.turn"
|
|
61
|
+
},
|
|
62
|
+
"WEBRTC": {
|
|
63
|
+
"code": "webrtc"
|
|
64
|
+
},
|
|
65
|
+
"XMPP_CLIENT": {
|
|
66
|
+
"code": "xmpp-client"
|
|
67
|
+
},
|
|
68
|
+
"XMPP_SERVER": {
|
|
69
|
+
"code": "xmpp-server"
|
|
70
|
+
}
|
|
71
|
+
}
|