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,404 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AEAD_AES_128_CCM": {
|
|
3
|
+
"name": "AEAD_AES_128_CCM",
|
|
4
|
+
"long_name": null,
|
|
5
|
+
"oid": null,
|
|
6
|
+
"vulnerabilities": [],
|
|
7
|
+
"digest_size": 128,
|
|
8
|
+
"hash_algorithm": null
|
|
9
|
+
},
|
|
10
|
+
"AEAD_AES_128_GCM": {
|
|
11
|
+
"name": "AEAD_AES_128_GCM",
|
|
12
|
+
"long_name": null,
|
|
13
|
+
"oid": null,
|
|
14
|
+
"vulnerabilities": [],
|
|
15
|
+
"digest_size": 128,
|
|
16
|
+
"hash_algorithm": null
|
|
17
|
+
},
|
|
18
|
+
"AEAD_AES_256_CCM": {
|
|
19
|
+
"name": "AEAD_AES_256_CCM",
|
|
20
|
+
"long_name": null,
|
|
21
|
+
"oid": null,
|
|
22
|
+
"vulnerabilities": [],
|
|
23
|
+
"digest_size": 256,
|
|
24
|
+
"hash_algorithm": null
|
|
25
|
+
},
|
|
26
|
+
"AEAD_AES_256_GCM": {
|
|
27
|
+
"name": "AEAD_AES_256_GCM",
|
|
28
|
+
"long_name": null,
|
|
29
|
+
"oid": null,
|
|
30
|
+
"vulnerabilities": [],
|
|
31
|
+
"digest_size": 256,
|
|
32
|
+
"hash_algorithm": null
|
|
33
|
+
},
|
|
34
|
+
"CBCMAC_3DES": {
|
|
35
|
+
"name": "CBC-MAC 3DES",
|
|
36
|
+
"long_name": null,
|
|
37
|
+
"oid": null,
|
|
38
|
+
"vulnerabilities": null,
|
|
39
|
+
"digest_size": 64,
|
|
40
|
+
"hash_algorithm": null
|
|
41
|
+
},
|
|
42
|
+
"CBCMAC_AES": {
|
|
43
|
+
"name": "CBC-MAC AES",
|
|
44
|
+
"long_name": null,
|
|
45
|
+
"oid": null,
|
|
46
|
+
"vulnerabilities": null,
|
|
47
|
+
"digest_size": 128,
|
|
48
|
+
"hash_algorithm": null
|
|
49
|
+
},
|
|
50
|
+
"CBCMAC_BLOWFISH": {
|
|
51
|
+
"name": "CBC-MAC Blowfish",
|
|
52
|
+
"long_name": null,
|
|
53
|
+
"oid": null,
|
|
54
|
+
"vulnerabilities": null,
|
|
55
|
+
"digest_size": 64,
|
|
56
|
+
"hash_algorithm": null
|
|
57
|
+
},
|
|
58
|
+
"CBCMAC_DES": {
|
|
59
|
+
"name": "CBC-MAC DES",
|
|
60
|
+
"long_name": null,
|
|
61
|
+
"oid": null,
|
|
62
|
+
"vulnerabilities": null,
|
|
63
|
+
"digest_size": 64,
|
|
64
|
+
"hash_algorithm": null
|
|
65
|
+
},
|
|
66
|
+
"CBCMAC_RIJNDAEL": {
|
|
67
|
+
"name": "CBC-MAC Rijndael",
|
|
68
|
+
"long_name": null,
|
|
69
|
+
"oid": null,
|
|
70
|
+
"vulnerabilities": null,
|
|
71
|
+
"digest_size": 128,
|
|
72
|
+
"hash_algorithm": null
|
|
73
|
+
},
|
|
74
|
+
"CBCMAC_TWOFISH": {
|
|
75
|
+
"name": "CBC-MAC Twofish",
|
|
76
|
+
"long_name": null,
|
|
77
|
+
"oid": null,
|
|
78
|
+
"vulnerabilities": null,
|
|
79
|
+
"digest_size": 128,
|
|
80
|
+
"hash_algorithm": null
|
|
81
|
+
},
|
|
82
|
+
"CRYPTICORE": {
|
|
83
|
+
"name": "CryptiCore",
|
|
84
|
+
"long_name": "CryptiCore (Badger)",
|
|
85
|
+
"oid": null,
|
|
86
|
+
"vulnerabilities": null,
|
|
87
|
+
"digest_size": 128,
|
|
88
|
+
"hash_algorithm": null
|
|
89
|
+
},
|
|
90
|
+
"IMIT_GOST28147": {
|
|
91
|
+
"name": "MAC GOST 28147-89",
|
|
92
|
+
"long_name": null,
|
|
93
|
+
"oid": "1.2.643.2.2.22",
|
|
94
|
+
"vulnerabilities": [
|
|
95
|
+
{
|
|
96
|
+
"attack_type": "FORGERY_ATTACK",
|
|
97
|
+
"grade": "WEAK",
|
|
98
|
+
"named": null
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"digest_size": 32,
|
|
102
|
+
"hash_algorithm": null
|
|
103
|
+
},
|
|
104
|
+
"GOST_R3411_94": {
|
|
105
|
+
"name": "HMAC GOST R 34.11-94",
|
|
106
|
+
"long_name": null,
|
|
107
|
+
"oid": "1.2.643.2.2.10",
|
|
108
|
+
"vulnerabilities": null,
|
|
109
|
+
"digest_size": null,
|
|
110
|
+
"hash_algorithm": "GOST_R3411_94"
|
|
111
|
+
},
|
|
112
|
+
"GOST_R3411_12_256": {
|
|
113
|
+
"name": "HMAC GOST R 34.11-2012 \"Streebog\" (256)",
|
|
114
|
+
"long_name": null,
|
|
115
|
+
"oid": "1.2.643.7.1.1.4.1",
|
|
116
|
+
"vulnerabilities": null,
|
|
117
|
+
"digest_size": null,
|
|
118
|
+
"hash_algorithm": "GOST_R3411_12_256"
|
|
119
|
+
},
|
|
120
|
+
"GOST_R3411_12_512": {
|
|
121
|
+
"name": "HMAC GOST R 34.11-2012 \"Streebog\" (512)",
|
|
122
|
+
"long_name": null,
|
|
123
|
+
"oid": "1.2.643.7.1.1.4.2",
|
|
124
|
+
"vulnerabilities": null,
|
|
125
|
+
"digest_size": null,
|
|
126
|
+
"hash_algorithm": "GOST_R3411_12_512"
|
|
127
|
+
},
|
|
128
|
+
"GOST_R3412_15_KUZNYECHIK_CTR_OMAC": {
|
|
129
|
+
"name": "CTR OMAC GOST R 34.12-2015 \"Kuznyechik\"",
|
|
130
|
+
"long_name": null,
|
|
131
|
+
"oid": "1.2.643.7.1.1.5.2.2",
|
|
132
|
+
"vulnerabilities": null,
|
|
133
|
+
"digest_size": 128,
|
|
134
|
+
"hash_algorithm": null
|
|
135
|
+
},
|
|
136
|
+
"GOST_R3412_15_MAGMA_CTR_OMAC": {
|
|
137
|
+
"name": "CTR OMAC GOST R 34.12-2015 \"Magma\"",
|
|
138
|
+
"long_name": null,
|
|
139
|
+
"oid": "1.2.643.7.1.1.5.1.2",
|
|
140
|
+
"vulnerabilities": [
|
|
141
|
+
{
|
|
142
|
+
"attack_type": "FORGERY_ATTACK",
|
|
143
|
+
"grade": "WEAK",
|
|
144
|
+
"named": null
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"digest_size": 64,
|
|
148
|
+
"hash_algorithm": null
|
|
149
|
+
},
|
|
150
|
+
"MD5": {
|
|
151
|
+
"name": "MD5",
|
|
152
|
+
"long_name": null,
|
|
153
|
+
"oid": "1.2.840.113549.2.6",
|
|
154
|
+
"vulnerabilities": [
|
|
155
|
+
{
|
|
156
|
+
"attack_type": "COLLISION",
|
|
157
|
+
"grade": "DEPRECATED",
|
|
158
|
+
"named": null
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"digest_size": null,
|
|
162
|
+
"hash_algorithm": "MD5"
|
|
163
|
+
},
|
|
164
|
+
"POLY1305": {
|
|
165
|
+
"name": "POLY1305",
|
|
166
|
+
"long_name": null,
|
|
167
|
+
"oid": null,
|
|
168
|
+
"vulnerabilities": [],
|
|
169
|
+
"digest_size": 128,
|
|
170
|
+
"hash_algorithm": null
|
|
171
|
+
},
|
|
172
|
+
"RIPEMD128": {
|
|
173
|
+
"name": "RIPEMD-128",
|
|
174
|
+
"long_name": null,
|
|
175
|
+
"oid": null,
|
|
176
|
+
"vulnerabilities": null,
|
|
177
|
+
"digest_size": null,
|
|
178
|
+
"hash_algorithm": "RIPEMD128"
|
|
179
|
+
},
|
|
180
|
+
"RIPEMD160": {
|
|
181
|
+
"name": "RIPEMD-160",
|
|
182
|
+
"long_name": null,
|
|
183
|
+
"oid": null,
|
|
184
|
+
"vulnerabilities": null,
|
|
185
|
+
"digest_size": null,
|
|
186
|
+
"hash_algorithm": "RIPEMD160"
|
|
187
|
+
},
|
|
188
|
+
"RIPEMD256": {
|
|
189
|
+
"name": "RIPEMD-256",
|
|
190
|
+
"long_name": null,
|
|
191
|
+
"oid": null,
|
|
192
|
+
"vulnerabilities": null,
|
|
193
|
+
"digest_size": null,
|
|
194
|
+
"hash_algorithm": "RIPEMD256"
|
|
195
|
+
},
|
|
196
|
+
"SHA1": {
|
|
197
|
+
"name": "SHA-1",
|
|
198
|
+
"long_name": null,
|
|
199
|
+
"oid": "1.2.840.113549.2.7",
|
|
200
|
+
"vulnerabilities": [
|
|
201
|
+
{
|
|
202
|
+
"attack_type": "COLLISION",
|
|
203
|
+
"grade": "DEPRECATED",
|
|
204
|
+
"named": null
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
"digest_size": null,
|
|
208
|
+
"hash_algorithm": "SHA1"
|
|
209
|
+
},
|
|
210
|
+
"SHA2_224": {
|
|
211
|
+
"name": "SHA2-224",
|
|
212
|
+
"long_name": null,
|
|
213
|
+
"oid": "1.2.840.113549.2.8",
|
|
214
|
+
"vulnerabilities": [],
|
|
215
|
+
"digest_size": null,
|
|
216
|
+
"hash_algorithm": "SHA2_224"
|
|
217
|
+
},
|
|
218
|
+
"SHA2_256": {
|
|
219
|
+
"name": "SHA2-256",
|
|
220
|
+
"long_name": null,
|
|
221
|
+
"oid": "1.2.840.113549.2.9",
|
|
222
|
+
"vulnerabilities": [],
|
|
223
|
+
"digest_size": null,
|
|
224
|
+
"hash_algorithm": "SHA2_256"
|
|
225
|
+
},
|
|
226
|
+
"SHA2_384": {
|
|
227
|
+
"name": "SHA2-384",
|
|
228
|
+
"long_name": null,
|
|
229
|
+
"oid": "1.2.840.113549.2.10",
|
|
230
|
+
"vulnerabilities": [],
|
|
231
|
+
"digest_size": null,
|
|
232
|
+
"hash_algorithm": "SHA2_384"
|
|
233
|
+
},
|
|
234
|
+
"SHA2_512": {
|
|
235
|
+
"name": "SHA2-512",
|
|
236
|
+
"long_name": null,
|
|
237
|
+
"oid": "1.2.840.113549.2.11",
|
|
238
|
+
"vulnerabilities": [],
|
|
239
|
+
"digest_size": null,
|
|
240
|
+
"hash_algorithm": "SHA2_512"
|
|
241
|
+
},
|
|
242
|
+
"SHA2_512_224": {
|
|
243
|
+
"name": "SHA-512/224",
|
|
244
|
+
"long_name": null,
|
|
245
|
+
"oid": "1.2.840.113549.2.12",
|
|
246
|
+
"vulnerabilities": [],
|
|
247
|
+
"digest_size": null,
|
|
248
|
+
"hash_algorithm": "SHA2_512_224"
|
|
249
|
+
},
|
|
250
|
+
"SHA2_512_256": {
|
|
251
|
+
"name": "SHA-512/256",
|
|
252
|
+
"long_name": null,
|
|
253
|
+
"oid": "1.2.840.113549.2.13",
|
|
254
|
+
"vulnerabilities": [],
|
|
255
|
+
"digest_size": null,
|
|
256
|
+
"hash_algorithm": "SHA2_512_256"
|
|
257
|
+
},
|
|
258
|
+
"SHA3_224": {
|
|
259
|
+
"name": "SHA3-224",
|
|
260
|
+
"long_name": null,
|
|
261
|
+
"oid": "2.16.840.1.101.3.4.2.13",
|
|
262
|
+
"vulnerabilities": [],
|
|
263
|
+
"digest_size": null,
|
|
264
|
+
"hash_algorithm": "SHA3_224"
|
|
265
|
+
},
|
|
266
|
+
"SHA3_256": {
|
|
267
|
+
"name": "SHA3-256",
|
|
268
|
+
"long_name": null,
|
|
269
|
+
"oid": "2.16.840.1.101.3.4.2.14",
|
|
270
|
+
"vulnerabilities": [],
|
|
271
|
+
"digest_size": null,
|
|
272
|
+
"hash_algorithm": "SHA3_256"
|
|
273
|
+
},
|
|
274
|
+
"SHA3_384": {
|
|
275
|
+
"name": "SHA3-384",
|
|
276
|
+
"long_name": null,
|
|
277
|
+
"oid": "2.16.840.1.101.3.4.2.15",
|
|
278
|
+
"vulnerabilities": [],
|
|
279
|
+
"digest_size": null,
|
|
280
|
+
"hash_algorithm": "SHA3_384"
|
|
281
|
+
},
|
|
282
|
+
"SHA3_512": {
|
|
283
|
+
"name": "SHA3-512",
|
|
284
|
+
"long_name": null,
|
|
285
|
+
"oid": "2.16.840.1.101.3.4.2.16",
|
|
286
|
+
"vulnerabilities": [],
|
|
287
|
+
"digest_size": null,
|
|
288
|
+
"hash_algorithm": "SHA3_512"
|
|
289
|
+
},
|
|
290
|
+
"SM3": {
|
|
291
|
+
"name": "SM3",
|
|
292
|
+
"long_name": "ShangMi 3",
|
|
293
|
+
"oid": "1.2.156.10197.1.401.2",
|
|
294
|
+
"vulnerabilities": [],
|
|
295
|
+
"digest_size": null,
|
|
296
|
+
"hash_algorithm": "SM3"
|
|
297
|
+
},
|
|
298
|
+
"TIGER_128": {
|
|
299
|
+
"name": "Tiger/128",
|
|
300
|
+
"long_name": null,
|
|
301
|
+
"oid": null,
|
|
302
|
+
"vulnerabilities": null,
|
|
303
|
+
"digest_size": null,
|
|
304
|
+
"hash_algorithm": "TIGER_128"
|
|
305
|
+
},
|
|
306
|
+
"TIGER_128_96": {
|
|
307
|
+
"name": "Tiger/128(96)",
|
|
308
|
+
"long_name": null,
|
|
309
|
+
"oid": null,
|
|
310
|
+
"vulnerabilities": null,
|
|
311
|
+
"digest_size": null,
|
|
312
|
+
"hash_algorithm": "TIGER_128_96"
|
|
313
|
+
},
|
|
314
|
+
"TIGER_160": {
|
|
315
|
+
"name": "Tiger/160",
|
|
316
|
+
"long_name": null,
|
|
317
|
+
"oid": null,
|
|
318
|
+
"vulnerabilities": null,
|
|
319
|
+
"digest_size": null,
|
|
320
|
+
"hash_algorithm": "TIGER_160"
|
|
321
|
+
},
|
|
322
|
+
"TIGER_160_96": {
|
|
323
|
+
"name": "Tiger/160(96)",
|
|
324
|
+
"long_name": null,
|
|
325
|
+
"oid": null,
|
|
326
|
+
"vulnerabilities": null,
|
|
327
|
+
"digest_size": null,
|
|
328
|
+
"hash_algorithm": "TIGER_160_96"
|
|
329
|
+
},
|
|
330
|
+
"TIGER_192": {
|
|
331
|
+
"name": "Tiger/192",
|
|
332
|
+
"long_name": null,
|
|
333
|
+
"oid": "1.3.6.1.5.5.8.1.3",
|
|
334
|
+
"vulnerabilities": null,
|
|
335
|
+
"digest_size": null,
|
|
336
|
+
"hash_algorithm": "TIGER_192"
|
|
337
|
+
},
|
|
338
|
+
"TIGER_192_96": {
|
|
339
|
+
"name": "Tiger/192(96)",
|
|
340
|
+
"long_name": null,
|
|
341
|
+
"oid": null,
|
|
342
|
+
"vulnerabilities": null,
|
|
343
|
+
"digest_size": null,
|
|
344
|
+
"hash_algorithm": "TIGER_192_96"
|
|
345
|
+
},
|
|
346
|
+
"UMAC_32": {
|
|
347
|
+
"name": "UMAC-32",
|
|
348
|
+
"long_name": null,
|
|
349
|
+
"oid": null,
|
|
350
|
+
"vulnerabilities": [
|
|
351
|
+
{
|
|
352
|
+
"attack_type": "FORGERY_ATTACK",
|
|
353
|
+
"grade": "WEAK",
|
|
354
|
+
"named": null
|
|
355
|
+
}
|
|
356
|
+
],
|
|
357
|
+
"digest_size": 32,
|
|
358
|
+
"hash_algorithm": null
|
|
359
|
+
},
|
|
360
|
+
"UMAC_64": {
|
|
361
|
+
"name": "UMAC-64",
|
|
362
|
+
"long_name": null,
|
|
363
|
+
"oid": null,
|
|
364
|
+
"vulnerabilities": [
|
|
365
|
+
{
|
|
366
|
+
"attack_type": "FORGERY_ATTACK",
|
|
367
|
+
"grade": "WEAK",
|
|
368
|
+
"named": null
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"digest_size": 64,
|
|
372
|
+
"hash_algorithm": null
|
|
373
|
+
},
|
|
374
|
+
"UMAC_96": {
|
|
375
|
+
"name": "UMAC-96",
|
|
376
|
+
"long_name": null,
|
|
377
|
+
"oid": null,
|
|
378
|
+
"vulnerabilities": [
|
|
379
|
+
{
|
|
380
|
+
"attack_type": "FORGERY_ATTACK",
|
|
381
|
+
"grade": "WEAK",
|
|
382
|
+
"named": null
|
|
383
|
+
}
|
|
384
|
+
],
|
|
385
|
+
"digest_size": 96,
|
|
386
|
+
"hash_algorithm": null
|
|
387
|
+
},
|
|
388
|
+
"UMAC_128": {
|
|
389
|
+
"name": "UMAC-128",
|
|
390
|
+
"long_name": null,
|
|
391
|
+
"oid": null,
|
|
392
|
+
"vulnerabilities": [],
|
|
393
|
+
"digest_size": 128,
|
|
394
|
+
"hash_algorithm": null
|
|
395
|
+
},
|
|
396
|
+
"WHIRLPOOL": {
|
|
397
|
+
"name": "Whirlpool",
|
|
398
|
+
"long_name": null,
|
|
399
|
+
"oid": null,
|
|
400
|
+
"vulnerabilities": null,
|
|
401
|
+
"digest_size": null,
|
|
402
|
+
"hash_algorithm": "WHIRLPOOL"
|
|
403
|
+
}
|
|
404
|
+
}
|