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,587 @@
|
|
|
1
|
+
{
|
|
2
|
+
"NONE": {
|
|
3
|
+
"code": "none",
|
|
4
|
+
"cipher": null,
|
|
5
|
+
"mode": null
|
|
6
|
+
},
|
|
7
|
+
"ACSS_OPENSSH_ORG": {
|
|
8
|
+
"code": "acss@openssh.org",
|
|
9
|
+
"cipher": "AES_128",
|
|
10
|
+
"mode": "CBC"
|
|
11
|
+
},
|
|
12
|
+
"AES128_CBC": {
|
|
13
|
+
"code": "aes128-cbc",
|
|
14
|
+
"cipher": "AES_128",
|
|
15
|
+
"mode": "CBC"
|
|
16
|
+
},
|
|
17
|
+
"AES128_CFB": {
|
|
18
|
+
"code": "aes128-cfb",
|
|
19
|
+
"cipher": "AES_128",
|
|
20
|
+
"mode": "CFB"
|
|
21
|
+
},
|
|
22
|
+
"AES128_CTR": {
|
|
23
|
+
"code": "aes128-ctr",
|
|
24
|
+
"cipher": "AES_128",
|
|
25
|
+
"mode": "CTR"
|
|
26
|
+
},
|
|
27
|
+
"AES128_GCM": {
|
|
28
|
+
"code": "aes128-gcm",
|
|
29
|
+
"cipher": "AES_128",
|
|
30
|
+
"mode": "GCM"
|
|
31
|
+
},
|
|
32
|
+
"AES128_GCM_OPENSSH_COM": {
|
|
33
|
+
"code": "aes128-gcm@openssh.com",
|
|
34
|
+
"cipher": "AES_128",
|
|
35
|
+
"mode": "GCM"
|
|
36
|
+
},
|
|
37
|
+
"AES192_CBC": {
|
|
38
|
+
"code": "aes192-cbc",
|
|
39
|
+
"cipher": "AES_192",
|
|
40
|
+
"mode": "CBC"
|
|
41
|
+
},
|
|
42
|
+
"AES192_CTR": {
|
|
43
|
+
"code": "aes192-ctr",
|
|
44
|
+
"cipher": "AES_192",
|
|
45
|
+
"mode": "CTR"
|
|
46
|
+
},
|
|
47
|
+
"AES192_GCM": {
|
|
48
|
+
"code": "aes192-gcm",
|
|
49
|
+
"cipher": "AES_192",
|
|
50
|
+
"mode": "GCM"
|
|
51
|
+
},
|
|
52
|
+
"AES192_GCM_OPENSSH_COM": {
|
|
53
|
+
"code": "aes192-gcm@openssh.com",
|
|
54
|
+
"cipher": "AES_192",
|
|
55
|
+
"mode": "GCM"
|
|
56
|
+
},
|
|
57
|
+
"AES256_CBC": {
|
|
58
|
+
"code": "aes256-cbc",
|
|
59
|
+
"cipher": "AES_256",
|
|
60
|
+
"mode": "CBC"
|
|
61
|
+
},
|
|
62
|
+
"AES256_CFB": {
|
|
63
|
+
"code": "aes256-cfb",
|
|
64
|
+
"cipher": "AES_256",
|
|
65
|
+
"mode": "CFB"
|
|
66
|
+
},
|
|
67
|
+
"AES256_CTR": {
|
|
68
|
+
"code": "aes256-ctr",
|
|
69
|
+
"cipher": "AES_256",
|
|
70
|
+
"mode": "CTR"
|
|
71
|
+
},
|
|
72
|
+
"AES256_GCM": {
|
|
73
|
+
"code": "aes256-gcm",
|
|
74
|
+
"cipher": "AES_256",
|
|
75
|
+
"mode": "GCM"
|
|
76
|
+
},
|
|
77
|
+
"AES256_GCM_OPENSSH_COM": {
|
|
78
|
+
"code": "aes256-gcm@openssh.com",
|
|
79
|
+
"cipher": "AES_256",
|
|
80
|
+
"mode": "GCM"
|
|
81
|
+
},
|
|
82
|
+
"ARCFOUR": {
|
|
83
|
+
"code": "arcfour",
|
|
84
|
+
"cipher": "RC4_40",
|
|
85
|
+
"mode": null
|
|
86
|
+
},
|
|
87
|
+
"ARCFOUR128": {
|
|
88
|
+
"code": "arcfour128",
|
|
89
|
+
"cipher": "RC4_128",
|
|
90
|
+
"mode": null
|
|
91
|
+
},
|
|
92
|
+
"ARCFOUR256": {
|
|
93
|
+
"code": "arcfour256",
|
|
94
|
+
"cipher": "RC4_256",
|
|
95
|
+
"mode": null
|
|
96
|
+
},
|
|
97
|
+
"BLOWFISH": {
|
|
98
|
+
"code": "blowfish",
|
|
99
|
+
"cipher": "BLOWFISH",
|
|
100
|
+
"mode": "CBC"
|
|
101
|
+
},
|
|
102
|
+
"BLOWFISH_CBC": {
|
|
103
|
+
"code": "blowfish-cbc",
|
|
104
|
+
"cipher": "BLOWFISH",
|
|
105
|
+
"mode": "CBC"
|
|
106
|
+
},
|
|
107
|
+
"BLOWFISH_CFB": {
|
|
108
|
+
"code": "blowfish-cfb",
|
|
109
|
+
"cipher": "BLOWFISH",
|
|
110
|
+
"mode": "CFB"
|
|
111
|
+
},
|
|
112
|
+
"BLOWFISH_CTR": {
|
|
113
|
+
"code": "blowfish-ctr",
|
|
114
|
+
"cipher": "BLOWFISH",
|
|
115
|
+
"mode": "CTR"
|
|
116
|
+
},
|
|
117
|
+
"BLOWFISH_ECB": {
|
|
118
|
+
"code": "blowfish-ecb",
|
|
119
|
+
"cipher": "BLOWFISH",
|
|
120
|
+
"mode": "ECB"
|
|
121
|
+
},
|
|
122
|
+
"BLOWFISH_OFB": {
|
|
123
|
+
"code": "blowfish-ofb",
|
|
124
|
+
"cipher": "BLOWFISH",
|
|
125
|
+
"mode": "OFB"
|
|
126
|
+
},
|
|
127
|
+
"CAMELLIA128_CBC_OPENSSH_ORG": {
|
|
128
|
+
"code": "camellia128-cbc@openssh.org",
|
|
129
|
+
"cipher": "CAMELLIA_128",
|
|
130
|
+
"mode": "CBC"
|
|
131
|
+
},
|
|
132
|
+
"CAMELLIA128_CBC": {
|
|
133
|
+
"code": "camellia128-cbc",
|
|
134
|
+
"cipher": "CAMELLIA_128",
|
|
135
|
+
"mode": "CBC"
|
|
136
|
+
},
|
|
137
|
+
"CAMELLIA128_CTR": {
|
|
138
|
+
"code": "camellia128-ctr",
|
|
139
|
+
"cipher": "CAMELLIA_128",
|
|
140
|
+
"mode": "CTR"
|
|
141
|
+
},
|
|
142
|
+
"CAMELLIA128_CTR_OPENSSH_ORG": {
|
|
143
|
+
"code": "camellia128-ctr@openssh.org",
|
|
144
|
+
"cipher": "CAMELLIA_128",
|
|
145
|
+
"mode": "CTR"
|
|
146
|
+
},
|
|
147
|
+
"CAMELLIA192_CBC_OPENSSH_ORG": {
|
|
148
|
+
"code": "camellia192-cbc@openssh.org",
|
|
149
|
+
"cipher": "CAMELLIA_192",
|
|
150
|
+
"mode": "CBC"
|
|
151
|
+
},
|
|
152
|
+
"CAMELLIA192_CBC": {
|
|
153
|
+
"code": "camellia192-cbc",
|
|
154
|
+
"cipher": "CAMELLIA_192",
|
|
155
|
+
"mode": "CBC"
|
|
156
|
+
},
|
|
157
|
+
"CAMELLIA192_CTR": {
|
|
158
|
+
"code": "camellia192-ctr",
|
|
159
|
+
"cipher": "CAMELLIA_192",
|
|
160
|
+
"mode": "CTR"
|
|
161
|
+
},
|
|
162
|
+
"CAMELLIA192_CTR_OPENSSH_ORG": {
|
|
163
|
+
"code": "camellia192-ctr@openssh.org",
|
|
164
|
+
"cipher": "CAMELLIA_192",
|
|
165
|
+
"mode": "CTR"
|
|
166
|
+
},
|
|
167
|
+
"CAMELLIA256_CBC_OPENSSH_ORG": {
|
|
168
|
+
"code": "camellia256-cbc@openssh.org",
|
|
169
|
+
"cipher": "CAMELLIA_256",
|
|
170
|
+
"mode": "CBC"
|
|
171
|
+
},
|
|
172
|
+
"CAMELLIA256_CBC": {
|
|
173
|
+
"code": "camellia256-cbc",
|
|
174
|
+
"cipher": "CAMELLIA_256",
|
|
175
|
+
"mode": "CBC"
|
|
176
|
+
},
|
|
177
|
+
"CAMELLIA256_CTR": {
|
|
178
|
+
"code": "camellia256-ctr",
|
|
179
|
+
"cipher": "CAMELLIA_256",
|
|
180
|
+
"mode": "CTR"
|
|
181
|
+
},
|
|
182
|
+
"CAMELLIA256_CTR_OPENSSH_ORG": {
|
|
183
|
+
"code": "camellia256-ctr@openssh.org",
|
|
184
|
+
"cipher": "CAMELLIA_256",
|
|
185
|
+
"mode": "CTR"
|
|
186
|
+
},
|
|
187
|
+
"CAST128_CBC": {
|
|
188
|
+
"code": "cast128-cbc",
|
|
189
|
+
"cipher": "CAST_128",
|
|
190
|
+
"mode": "CBC"
|
|
191
|
+
},
|
|
192
|
+
"CAST128_CFB": {
|
|
193
|
+
"code": "cast128-cfb",
|
|
194
|
+
"cipher": "CAST_128",
|
|
195
|
+
"mode": "CFB"
|
|
196
|
+
},
|
|
197
|
+
"CAST128_CTR": {
|
|
198
|
+
"code": "cast128-ctr",
|
|
199
|
+
"cipher": "CAST_128",
|
|
200
|
+
"mode": "CTR"
|
|
201
|
+
},
|
|
202
|
+
"CAST128_ECB": {
|
|
203
|
+
"code": "cast128-ecb",
|
|
204
|
+
"cipher": "CAST_128",
|
|
205
|
+
"mode": "ECB"
|
|
206
|
+
},
|
|
207
|
+
"CAST128_OFB": {
|
|
208
|
+
"code": "cast128-ofb",
|
|
209
|
+
"cipher": "CAST_128",
|
|
210
|
+
"mode": "OFB"
|
|
211
|
+
},
|
|
212
|
+
"CAST128_12_CBC": {
|
|
213
|
+
"code": "cast128-12-cbc",
|
|
214
|
+
"cipher": "CAST_128",
|
|
215
|
+
"mode": "CBC"
|
|
216
|
+
},
|
|
217
|
+
"CAST128_12_CBC_SSH_COM": {
|
|
218
|
+
"code": "cast128-12-cbc@ssh.com",
|
|
219
|
+
"cipher": "CAST_128",
|
|
220
|
+
"mode": "CBC"
|
|
221
|
+
},
|
|
222
|
+
"CAST128_12_CFB": {
|
|
223
|
+
"code": "cast128-12-cfb",
|
|
224
|
+
"cipher": "CAST_128",
|
|
225
|
+
"mode": "CFB"
|
|
226
|
+
},
|
|
227
|
+
"CAST128_12_CFB_SSH_COM": {
|
|
228
|
+
"code": "cast128-12-cfb@ssh.com",
|
|
229
|
+
"cipher": "CAST_128",
|
|
230
|
+
"mode": "CFB"
|
|
231
|
+
},
|
|
232
|
+
"CAST128_12_ECB": {
|
|
233
|
+
"code": "cast128-12-ecb",
|
|
234
|
+
"cipher": "CAST_128",
|
|
235
|
+
"mode": "ECB"
|
|
236
|
+
},
|
|
237
|
+
"CAST128_12_ECB_SSH_COM": {
|
|
238
|
+
"code": "cast128-12-ecb@ssh.com",
|
|
239
|
+
"cipher": "CAST_128",
|
|
240
|
+
"mode": "ECB"
|
|
241
|
+
},
|
|
242
|
+
"CAST128_12_OFB": {
|
|
243
|
+
"code": "cast128-12-ofb",
|
|
244
|
+
"cipher": "CAST_128",
|
|
245
|
+
"mode": "OFB"
|
|
246
|
+
},
|
|
247
|
+
"CAST128_12_OFB_SSH_COM": {
|
|
248
|
+
"code": "cast128-12-ofb@ssh.com",
|
|
249
|
+
"cipher": "CAST_128",
|
|
250
|
+
"mode": "OFB"
|
|
251
|
+
},
|
|
252
|
+
"CAST256_CBC": {
|
|
253
|
+
"code": "cast256-cbc",
|
|
254
|
+
"cipher": "CAST_256",
|
|
255
|
+
"mode": "CBC"
|
|
256
|
+
},
|
|
257
|
+
"CHACHA20_POLY1305": {
|
|
258
|
+
"code": "chacha20-poly1305",
|
|
259
|
+
"cipher": "CHACHA20",
|
|
260
|
+
"mode": null
|
|
261
|
+
},
|
|
262
|
+
"CHACHA20_POLY1305_OPENSSH_COM": {
|
|
263
|
+
"code": "chacha20-poly1305@openssh.com",
|
|
264
|
+
"cipher": "CHACHA20",
|
|
265
|
+
"mode": null
|
|
266
|
+
},
|
|
267
|
+
"CRYPTICORE128_SSH_COM": {
|
|
268
|
+
"code": "crypticore128@ssh.com",
|
|
269
|
+
"cipher": "CRYPTICORE",
|
|
270
|
+
"mode": null
|
|
271
|
+
},
|
|
272
|
+
"DES": {
|
|
273
|
+
"code": "des",
|
|
274
|
+
"cipher": "DES",
|
|
275
|
+
"mode": "CBC"
|
|
276
|
+
},
|
|
277
|
+
"DES_CBC": {
|
|
278
|
+
"code": "des-cbc",
|
|
279
|
+
"cipher": "DES",
|
|
280
|
+
"mode": "CBC"
|
|
281
|
+
},
|
|
282
|
+
"DES_CFB": {
|
|
283
|
+
"code": "des-cfb",
|
|
284
|
+
"cipher": "DES",
|
|
285
|
+
"mode": "CFB"
|
|
286
|
+
},
|
|
287
|
+
"DES_CTR": {
|
|
288
|
+
"code": "des-ctr",
|
|
289
|
+
"cipher": "DES",
|
|
290
|
+
"mode": "CTR"
|
|
291
|
+
},
|
|
292
|
+
"DES_ECB": {
|
|
293
|
+
"code": "des-ecb",
|
|
294
|
+
"cipher": "DES",
|
|
295
|
+
"mode": "ECB"
|
|
296
|
+
},
|
|
297
|
+
"DES_OFB": {
|
|
298
|
+
"code": "des-ofb",
|
|
299
|
+
"cipher": "DES",
|
|
300
|
+
"mode": "OFB"
|
|
301
|
+
},
|
|
302
|
+
"DES_CBC_SSH_COM": {
|
|
303
|
+
"code": "des-cbc@ssh.com",
|
|
304
|
+
"cipher": "DES",
|
|
305
|
+
"mode": "CBC"
|
|
306
|
+
},
|
|
307
|
+
"GRASSHOPPER_CBC": {
|
|
308
|
+
"code": "grasshopper-cbc",
|
|
309
|
+
"cipher": "GOST_R3412_15_128",
|
|
310
|
+
"mode": "CBC"
|
|
311
|
+
},
|
|
312
|
+
"GRASSHOPPER_CTR": {
|
|
313
|
+
"code": "grasshopper-ctr",
|
|
314
|
+
"cipher": "GOST_R3412_15_128",
|
|
315
|
+
"mode": "CTR"
|
|
316
|
+
},
|
|
317
|
+
"GRASSHOPPER_CTR128": {
|
|
318
|
+
"code": "grasshopper-ctr128",
|
|
319
|
+
"cipher": "GOST_R3412_15_128",
|
|
320
|
+
"mode": "CTR"
|
|
321
|
+
},
|
|
322
|
+
"GOST89": {
|
|
323
|
+
"code": "gost89",
|
|
324
|
+
"cipher": "GOST2814789",
|
|
325
|
+
"mode": "CBC"
|
|
326
|
+
},
|
|
327
|
+
"GOST89_CNT": {
|
|
328
|
+
"code": "gost89-cnt",
|
|
329
|
+
"cipher": "GOST2814789",
|
|
330
|
+
"mode": "CNT"
|
|
331
|
+
},
|
|
332
|
+
"IDEA_CBC": {
|
|
333
|
+
"code": "idea-cbc",
|
|
334
|
+
"cipher": "IDEA",
|
|
335
|
+
"mode": "CBC"
|
|
336
|
+
},
|
|
337
|
+
"IDEA_CFB": {
|
|
338
|
+
"code": "idea-cfb",
|
|
339
|
+
"cipher": "IDEA",
|
|
340
|
+
"mode": "CFB"
|
|
341
|
+
},
|
|
342
|
+
"IDEA_CTR": {
|
|
343
|
+
"code": "idea-ctr",
|
|
344
|
+
"cipher": "IDEA",
|
|
345
|
+
"mode": "CTR"
|
|
346
|
+
},
|
|
347
|
+
"IDEA_ECB": {
|
|
348
|
+
"code": "idea-ecb",
|
|
349
|
+
"cipher": "IDEA",
|
|
350
|
+
"mode": "ECB"
|
|
351
|
+
},
|
|
352
|
+
"IDEA_OFB": {
|
|
353
|
+
"code": "idea-ofb",
|
|
354
|
+
"cipher": "IDEA",
|
|
355
|
+
"mode": "OFB"
|
|
356
|
+
},
|
|
357
|
+
"KUZNECHIK_OFB": {
|
|
358
|
+
"code": "kuznechik-ofb",
|
|
359
|
+
"cipher": "GOST_R3412_15_128",
|
|
360
|
+
"mode": "OFB"
|
|
361
|
+
},
|
|
362
|
+
"RC2_CBC": {
|
|
363
|
+
"code": "rc2-cbc",
|
|
364
|
+
"cipher": "RC2",
|
|
365
|
+
"mode": "CBC"
|
|
366
|
+
},
|
|
367
|
+
"RC2_CBC_SSH_COM": {
|
|
368
|
+
"code": "rc2-cbc@ssh.com",
|
|
369
|
+
"cipher": "RC2",
|
|
370
|
+
"mode": "CBC"
|
|
371
|
+
},
|
|
372
|
+
"RC2_CTR": {
|
|
373
|
+
"code": "rc2-ctr",
|
|
374
|
+
"cipher": "RC2",
|
|
375
|
+
"mode": "CTR"
|
|
376
|
+
},
|
|
377
|
+
"RIJNDAEL128": {
|
|
378
|
+
"code": "rijndael128",
|
|
379
|
+
"cipher": "RIJNDAEL_128",
|
|
380
|
+
"mode": "CBC"
|
|
381
|
+
},
|
|
382
|
+
"RIJNDAEL128_CBC": {
|
|
383
|
+
"code": "rijndael128-cbc",
|
|
384
|
+
"cipher": "RIJNDAEL_128",
|
|
385
|
+
"mode": "CBC"
|
|
386
|
+
},
|
|
387
|
+
"RIJNDAEL192_CBC": {
|
|
388
|
+
"code": "rijndael192-cbc",
|
|
389
|
+
"cipher": "RIJNDAEL_192",
|
|
390
|
+
"mode": "CBC"
|
|
391
|
+
},
|
|
392
|
+
"RIJNDAEL256_CBC": {
|
|
393
|
+
"code": "rijndael256-cbc",
|
|
394
|
+
"cipher": "RIJNDAEL_256",
|
|
395
|
+
"mode": "CBC"
|
|
396
|
+
},
|
|
397
|
+
"RIJNDAEL_CBC_LYSATOR_LIU_SE": {
|
|
398
|
+
"code": "rijndael-cbc@lysator.liu.se",
|
|
399
|
+
"cipher": "RIJNDAEL_256",
|
|
400
|
+
"mode": "CBC"
|
|
401
|
+
},
|
|
402
|
+
"RIJNDAEL_CBC_SSH_COM": {
|
|
403
|
+
"code": "rijndael-cbc@ssh.com",
|
|
404
|
+
"cipher": "RIJNDAEL_256",
|
|
405
|
+
"mode": "CBC"
|
|
406
|
+
},
|
|
407
|
+
"SEED_CBC_SSH_COM": {
|
|
408
|
+
"code": "seed-cbc@ssh.com",
|
|
409
|
+
"cipher": "SEED",
|
|
410
|
+
"mode": "CBC"
|
|
411
|
+
},
|
|
412
|
+
"SEED_CTR_SSH_COM": {
|
|
413
|
+
"code": "seed-ctr@ssh.com",
|
|
414
|
+
"cipher": "SEED",
|
|
415
|
+
"mode": "CTR"
|
|
416
|
+
},
|
|
417
|
+
"SERPENT128_CBC": {
|
|
418
|
+
"code": "serpent128-cbc",
|
|
419
|
+
"cipher": "SERPENT_128",
|
|
420
|
+
"mode": "CBC"
|
|
421
|
+
},
|
|
422
|
+
"SERPENT128_CTR": {
|
|
423
|
+
"code": "serpent128-ctr",
|
|
424
|
+
"cipher": "SERPENT_128",
|
|
425
|
+
"mode": "CTR"
|
|
426
|
+
},
|
|
427
|
+
"SERPENT128_GCM": {
|
|
428
|
+
"code": "serpent128-gcm",
|
|
429
|
+
"cipher": "SERPENT_128",
|
|
430
|
+
"mode": "GCM"
|
|
431
|
+
},
|
|
432
|
+
"SERPENT128_GCM_LIBASSH_ORG": {
|
|
433
|
+
"code": "serpent128-gcm@libassh.org",
|
|
434
|
+
"cipher": "SERPENT_128",
|
|
435
|
+
"mode": "GCM"
|
|
436
|
+
},
|
|
437
|
+
"SERPENT192_CBC": {
|
|
438
|
+
"code": "serpent192-cbc",
|
|
439
|
+
"cipher": "SERPENT_192",
|
|
440
|
+
"mode": "CBC"
|
|
441
|
+
},
|
|
442
|
+
"SERPENT192_CTR": {
|
|
443
|
+
"code": "serpent192-ctr",
|
|
444
|
+
"cipher": "SERPENT_192",
|
|
445
|
+
"mode": "CTR"
|
|
446
|
+
},
|
|
447
|
+
"SERPENT256_CBC": {
|
|
448
|
+
"code": "serpent256-cbc",
|
|
449
|
+
"cipher": "SERPENT_256",
|
|
450
|
+
"mode": "CBC"
|
|
451
|
+
},
|
|
452
|
+
"SERPENT256_CTR": {
|
|
453
|
+
"code": "serpent256-ctr",
|
|
454
|
+
"cipher": "SERPENT_256",
|
|
455
|
+
"mode": "CTR"
|
|
456
|
+
},
|
|
457
|
+
"SERPENT256_GCM": {
|
|
458
|
+
"code": "serpent256-gcm",
|
|
459
|
+
"cipher": "SERPENT_256",
|
|
460
|
+
"mode": "GCM"
|
|
461
|
+
},
|
|
462
|
+
"SERPENT256_GCM_LIBASSH_ORG": {
|
|
463
|
+
"code": "serpent256-gcm@libassh.org",
|
|
464
|
+
"cipher": "SERPENT_256",
|
|
465
|
+
"mode": "GCM"
|
|
466
|
+
},
|
|
467
|
+
"SM4": {
|
|
468
|
+
"code": "sm4",
|
|
469
|
+
"cipher": "SM4",
|
|
470
|
+
"mode": "CBC"
|
|
471
|
+
},
|
|
472
|
+
"SM4_CBC": {
|
|
473
|
+
"code": "sm4-cbc",
|
|
474
|
+
"cipher": "SM4",
|
|
475
|
+
"mode": "CBC"
|
|
476
|
+
},
|
|
477
|
+
"SM4_CTR": {
|
|
478
|
+
"code": "sm4-ctr",
|
|
479
|
+
"cipher": "SM4",
|
|
480
|
+
"mode": "CTR"
|
|
481
|
+
},
|
|
482
|
+
"SM4_CBC_HUAWEI": {
|
|
483
|
+
"code": "sm4-cbc@huawei",
|
|
484
|
+
"cipher": "SM4",
|
|
485
|
+
"mode": "CBC"
|
|
486
|
+
},
|
|
487
|
+
"TRIPLE_DES_CBC": {
|
|
488
|
+
"code": "3des-cbc",
|
|
489
|
+
"cipher": "TRIPLE_DES",
|
|
490
|
+
"mode": "CBC"
|
|
491
|
+
},
|
|
492
|
+
"TRIPLE_DES_CFB": {
|
|
493
|
+
"code": "3des-cfb",
|
|
494
|
+
"cipher": "TRIPLE_DES",
|
|
495
|
+
"mode": "CFB"
|
|
496
|
+
},
|
|
497
|
+
"TRIPLE_DES_CTR": {
|
|
498
|
+
"code": "3des-ctr",
|
|
499
|
+
"cipher": "TRIPLE_DES",
|
|
500
|
+
"mode": "CTR"
|
|
501
|
+
},
|
|
502
|
+
"TRIPLE_DES_ECB": {
|
|
503
|
+
"code": "3des-ecb",
|
|
504
|
+
"cipher": "TRIPLE_DES",
|
|
505
|
+
"mode": "ECB"
|
|
506
|
+
},
|
|
507
|
+
"TRIPLE_DES_OFB": {
|
|
508
|
+
"code": "3des-ofb",
|
|
509
|
+
"cipher": "TRIPLE_DES",
|
|
510
|
+
"mode": "OFB"
|
|
511
|
+
},
|
|
512
|
+
"TWOFISH_CBC": {
|
|
513
|
+
"code": "twofish-cbc",
|
|
514
|
+
"cipher": "TWOFISH256",
|
|
515
|
+
"mode": "CBC"
|
|
516
|
+
},
|
|
517
|
+
"TWOFISH_CFB": {
|
|
518
|
+
"code": "twofish-cfb",
|
|
519
|
+
"cipher": "TWOFISH256",
|
|
520
|
+
"mode": "CFB"
|
|
521
|
+
},
|
|
522
|
+
"TWOFISH_CTR": {
|
|
523
|
+
"code": "twofish-ctr",
|
|
524
|
+
"cipher": "TWOFISH256",
|
|
525
|
+
"mode": "CTR"
|
|
526
|
+
},
|
|
527
|
+
"TWOFISH_ECB": {
|
|
528
|
+
"code": "twofish-ecb",
|
|
529
|
+
"cipher": "TWOFISH256",
|
|
530
|
+
"mode": "ECB"
|
|
531
|
+
},
|
|
532
|
+
"TWOFISH_OFB": {
|
|
533
|
+
"code": "twofish-ofb",
|
|
534
|
+
"cipher": "TWOFISH256",
|
|
535
|
+
"mode": "OFB"
|
|
536
|
+
},
|
|
537
|
+
"TWOFISH128_CBC": {
|
|
538
|
+
"code": "twofish128-cbc",
|
|
539
|
+
"cipher": "TWOFISH128",
|
|
540
|
+
"mode": "CBC"
|
|
541
|
+
},
|
|
542
|
+
"TWOFISH128_CTR": {
|
|
543
|
+
"code": "twofish128-ctr",
|
|
544
|
+
"cipher": "TWOFISH128",
|
|
545
|
+
"mode": "CTR"
|
|
546
|
+
},
|
|
547
|
+
"TWOFISH128_GCM": {
|
|
548
|
+
"code": "twofish128-gcm",
|
|
549
|
+
"cipher": "TWOFISH128",
|
|
550
|
+
"mode": "GCM"
|
|
551
|
+
},
|
|
552
|
+
"TWOFISH128_GCM_LIBASSH_ORG": {
|
|
553
|
+
"code": "twofish128-gcm@libassh.org",
|
|
554
|
+
"cipher": "TWOFISH128",
|
|
555
|
+
"mode": "GCM"
|
|
556
|
+
},
|
|
557
|
+
"TWOFISH192_CBC": {
|
|
558
|
+
"code": "twofish192-cbc",
|
|
559
|
+
"cipher": "TWOFISH192",
|
|
560
|
+
"mode": "CBC"
|
|
561
|
+
},
|
|
562
|
+
"TWOFISH192_CTR": {
|
|
563
|
+
"code": "twofish192-ctr",
|
|
564
|
+
"cipher": "TWOFISH192",
|
|
565
|
+
"mode": "CTR"
|
|
566
|
+
},
|
|
567
|
+
"TWOFISH256_CBC": {
|
|
568
|
+
"code": "twofish256-cbc",
|
|
569
|
+
"cipher": "TWOFISH256",
|
|
570
|
+
"mode": "CBC"
|
|
571
|
+
},
|
|
572
|
+
"TWOFISH256_CTR": {
|
|
573
|
+
"code": "twofish256-ctr",
|
|
574
|
+
"cipher": "TWOFISH256",
|
|
575
|
+
"mode": "CTR"
|
|
576
|
+
},
|
|
577
|
+
"TWOFISH256_GCM": {
|
|
578
|
+
"code": "twofish256-gcm",
|
|
579
|
+
"cipher": "TWOFISH256",
|
|
580
|
+
"mode": "GCM"
|
|
581
|
+
},
|
|
582
|
+
"TWOFISH256_GCM_LIBASSH_ORG": {
|
|
583
|
+
"code": "twofish256-gcm@libassh.org",
|
|
584
|
+
"cipher": "TWOFISH256",
|
|
585
|
+
"mode": "GCM"
|
|
586
|
+
}
|
|
587
|
+
}
|