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.
Files changed (70) hide show
  1. CryptoDataHub-0.12.6.dist-info/LICENSE.txt +373 -0
  2. CryptoDataHub-0.12.6.dist-info/METADATA +119 -0
  3. CryptoDataHub-0.12.6.dist-info/RECORD +70 -0
  4. CryptoDataHub-0.12.6.dist-info/WHEEL +5 -0
  5. CryptoDataHub-0.12.6.dist-info/top_level.txt +1 -0
  6. cryptodatahub/__init__.py +0 -0
  7. cryptodatahub/__setup__.py +10 -0
  8. cryptodatahub/common/__init__.py +0 -0
  9. cryptodatahub/common/algorithm.py +164 -0
  10. cryptodatahub/common/attack-named.json +74 -0
  11. cryptodatahub/common/attack-type.json +58 -0
  12. cryptodatahub/common/authentication.json +113 -0
  13. cryptodatahub/common/block-cipher-mode.json +75 -0
  14. cryptodatahub/common/block-cipher.json +474 -0
  15. cryptodatahub/common/certificate-transparency-log.json +2394 -0
  16. cryptodatahub/common/client.json +20 -0
  17. cryptodatahub/common/dhparam-well-known.json +1975 -0
  18. cryptodatahub/common/ecparam-well-known.json +1868 -0
  19. cryptodatahub/common/entity.json +269 -0
  20. cryptodatahub/common/entity.py +110 -0
  21. cryptodatahub/common/exception.py +28 -0
  22. cryptodatahub/common/grade.py +200 -0
  23. cryptodatahub/common/hash.json +273 -0
  24. cryptodatahub/common/key-exchange.json +140 -0
  25. cryptodatahub/common/key.py +571 -0
  26. cryptodatahub/common/mac.json +404 -0
  27. cryptodatahub/common/named-group.json +902 -0
  28. cryptodatahub/common/parameter.py +149 -0
  29. cryptodatahub/common/root-certificate.json +19240 -0
  30. cryptodatahub/common/server.json +56 -0
  31. cryptodatahub/common/signature.json +233 -0
  32. cryptodatahub/common/standard.json +57 -0
  33. cryptodatahub/common/stores.py +323 -0
  34. cryptodatahub/common/types.py +524 -0
  35. cryptodatahub/common/utils.py +112 -0
  36. cryptodatahub/common/vulnerability.json +2 -0
  37. cryptodatahub/dnsrec/__init__.py +0 -0
  38. cryptodatahub/dnsrec/algorithm.json +114 -0
  39. cryptodatahub/dnsrec/algorithm.py +87 -0
  40. cryptodatahub/dnsrec/digest-type.json +26 -0
  41. cryptodatahub/dnsrec/rr-type.json +805 -0
  42. cryptodatahub/ssh/__init__.py +0 -0
  43. cryptodatahub/ssh/algorithm.py +194 -0
  44. cryptodatahub/ssh/compression-algorithm.json +24 -0
  45. cryptodatahub/ssh/elliptic-curve-identifier.json +50 -0
  46. cryptodatahub/ssh/encryption-algorithm.json +587 -0
  47. cryptodatahub/ssh/host-key-algorithm.json +482 -0
  48. cryptodatahub/ssh/kex-algorithm.json +709 -0
  49. cryptodatahub/ssh/mac-algorithm.json +566 -0
  50. cryptodatahub/tls/__init__.py +0 -0
  51. cryptodatahub/tls/algorithm.py +324 -0
  52. cryptodatahub/tls/certificate-compression-algorithm.json +14 -0
  53. cryptodatahub/tls/cipher-kind.json +171 -0
  54. cryptodatahub/tls/cipher-suite-extension.json +10 -0
  55. cryptodatahub/tls/cipher-suite.json +5098 -0
  56. cryptodatahub/tls/client.json +4757 -0
  57. cryptodatahub/tls/client.py +220 -0
  58. cryptodatahub/tls/compression-method.json +20 -0
  59. cryptodatahub/tls/ec-point-format.json +20 -0
  60. cryptodatahub/tls/extension-type.json +282 -0
  61. cryptodatahub/tls/grease-one-byte.json +34 -0
  62. cryptodatahub/tls/grease-two-byte.json +66 -0
  63. cryptodatahub/tls/hash-and-signature-algorithm.json +266 -0
  64. cryptodatahub/tls/named-curve.json +292 -0
  65. cryptodatahub/tls/next-protocol-name.json +20 -0
  66. cryptodatahub/tls/protocol-name.json +71 -0
  67. cryptodatahub/tls/psk-key-exchange-mode.json +10 -0
  68. cryptodatahub/tls/token-binding-paramater.json +14 -0
  69. cryptodatahub/tls/version.json +154 -0
  70. cryptodatahub/tls/version.py +17 -0
@@ -0,0 +1,805 @@
1
+ {
2
+ "A": {
3
+ "_code_in_hex": "0x0001",
4
+ "_standards": [
5
+ "RFC1035"
6
+ ],
7
+ "code": 1,
8
+ "name": "A",
9
+ "description": "a host address"
10
+ },
11
+ "NS": {
12
+ "_code_in_hex": "0x0002",
13
+ "_standards": [
14
+ "RFC1035"
15
+ ],
16
+ "code": 2,
17
+ "name": "NS",
18
+ "description": "an authoritative name server"
19
+ },
20
+ "MD": {
21
+ "_code_in_hex": "0x0003",
22
+ "_standards": [
23
+ "RFC1035"
24
+ ],
25
+ "code": 3,
26
+ "name": "MD",
27
+ "description": "a mail destination"
28
+ },
29
+ "MF": {
30
+ "_code_in_hex": "0x0004",
31
+ "_standards": [
32
+ "RFC1035"
33
+ ],
34
+ "code": 4,
35
+ "name": "MF",
36
+ "description": "a mail forwarder"
37
+ },
38
+ "CNAME": {
39
+ "_code_in_hex": "0x0005",
40
+ "_standards": [
41
+ "RFC1035"
42
+ ],
43
+ "code": 5,
44
+ "name": "CNAME",
45
+ "description": "the canonical name for an alias"
46
+ },
47
+ "SOA": {
48
+ "_code_in_hex": "0x0006",
49
+ "_standards": [
50
+ "RFC1035"
51
+ ],
52
+ "code": 6,
53
+ "name": "SOA",
54
+ "description": "marks the start of a zone of authority"
55
+ },
56
+ "MB": {
57
+ "_code_in_hex": "0x0007",
58
+ "_standards": [
59
+ "RFC1035"
60
+ ],
61
+ "code": 7,
62
+ "name": "MB",
63
+ "description": "a mailbox domain name"
64
+ },
65
+ "MG": {
66
+ "_code_in_hex": "0x0008",
67
+ "_standards": [
68
+ "RFC1035"
69
+ ],
70
+ "code": 8,
71
+ "name": "MG",
72
+ "description": "a mail group member"
73
+ },
74
+ "MR": {
75
+ "_code_in_hex": "0x0009",
76
+ "_standards": [
77
+ "RFC1035"
78
+ ],
79
+ "code": 9,
80
+ "name": "MR",
81
+ "description": "a mail rename domain name"
82
+ },
83
+ "NULL": {
84
+ "_code_in_hex": "0x000A",
85
+ "_standards": [
86
+ "RFC1035"
87
+ ],
88
+ "code": 10,
89
+ "name": "NULL",
90
+ "description": "a null RR"
91
+ },
92
+ "WKS": {
93
+ "_code_in_hex": "0x000B",
94
+ "_standards": [
95
+ "RFC1035"
96
+ ],
97
+ "code": 11,
98
+ "name": "WKS",
99
+ "description": "a well known service description"
100
+ },
101
+ "PTR": {
102
+ "_code_in_hex": "0x000C",
103
+ "_standards": [
104
+ "RFC1035"
105
+ ],
106
+ "code": 12,
107
+ "name": "PTR",
108
+ "description": "a domain name pointer"
109
+ },
110
+ "HINFO": {
111
+ "_code_in_hex": "0x000D",
112
+ "_standards": [
113
+ "RFC1035"
114
+ ],
115
+ "code": 13,
116
+ "name": "HINFO",
117
+ "description": "host information"
118
+ },
119
+ "MINFO": {
120
+ "_code_in_hex": "0x000E",
121
+ "_standards": [
122
+ "RFC1035"
123
+ ],
124
+ "code": 14,
125
+ "name": "MINFO",
126
+ "description": "mailbox or mail list information"
127
+ },
128
+ "MX": {
129
+ "_code_in_hex": "0x000F",
130
+ "_standards": [
131
+ "RFC1035"
132
+ ],
133
+ "code": 15,
134
+ "name": "MX",
135
+ "description": "mail exchange"
136
+ },
137
+ "TXT": {
138
+ "_code_in_hex": "0x0010",
139
+ "_standards": [
140
+ "RFC1035"
141
+ ],
142
+ "code": 16,
143
+ "name": "TXT",
144
+ "description": "text strings"
145
+ },
146
+ "RP": {
147
+ "_code_in_hex": "0x0011",
148
+ "_standards": [
149
+ "RFC1183"
150
+ ],
151
+ "code": 17,
152
+ "name": "RP",
153
+ "description": "for Responsible Person"
154
+ },
155
+ "AFSDB": {
156
+ "_code_in_hex": "0x0012",
157
+ "_standards": [
158
+ "RFC1183",
159
+ "RFC5864"
160
+ ],
161
+ "code": 18,
162
+ "name": "AFSDB",
163
+ "description": "for AFS Data Base location"
164
+ },
165
+ "X25": {
166
+ "_code_in_hex": "0x0013",
167
+ "_standards": [
168
+ "RFC1183"
169
+ ],
170
+ "code": 19,
171
+ "name": "X25",
172
+ "description": "for X.25 PSDN address"
173
+ },
174
+ "ISDN": {
175
+ "_code_in_hex": "0x0014",
176
+ "_standards": [
177
+ "RFC1183"
178
+ ],
179
+ "code": 20,
180
+ "name": "ISDN",
181
+ "description": "for ISDN address"
182
+ },
183
+ "RT": {
184
+ "_code_in_hex": "0x0015",
185
+ "_standards": [
186
+ "RFC1183"
187
+ ],
188
+ "code": 21,
189
+ "name": "RT",
190
+ "description": "for Route Through"
191
+ },
192
+ "NSAP": {
193
+ "_code_in_hex": "0x0016",
194
+ "_standards": [
195
+ "RFC1706",
196
+ "status-change-int-tlds-to-historic"
197
+ ],
198
+ "code": 22,
199
+ "name": "NSAP",
200
+ "description": "for NSAP address, NSAP style A record"
201
+ },
202
+ "NSAP-PTR": {
203
+ "_code_in_hex": "0x0017",
204
+ "_standards": [
205
+ "RFC1706",
206
+ "status-change-int-tlds-to-historic"
207
+ ],
208
+ "code": 23,
209
+ "name": "NSAP-PTR",
210
+ "description": "for domain name pointer, NSAP style"
211
+ },
212
+ "SIG": {
213
+ "_code_in_hex": "0x0018",
214
+ "_standards": [
215
+ "RFC2536",
216
+ "RFC2931",
217
+ "RFC3110",
218
+ "RFC4034"
219
+ ],
220
+ "code": 24,
221
+ "name": "SIG",
222
+ "description": "for security signature"
223
+ },
224
+ "KEY": {
225
+ "_code_in_hex": "0x0019",
226
+ "_standards": [
227
+ "RFC2536",
228
+ "RFC2539",
229
+ "RFC3110",
230
+ "RFC4034"
231
+ ],
232
+ "code": 25,
233
+ "name": "KEY",
234
+ "description": "for security key"
235
+ },
236
+ "PX": {
237
+ "_code_in_hex": "0x001A",
238
+ "_standards": [
239
+ "RFC2163"
240
+ ],
241
+ "code": 26,
242
+ "name": "PX",
243
+ "description": "X.400 mail mapping information"
244
+ },
245
+ "GPOS": {
246
+ "_code_in_hex": "0x001B",
247
+ "_standards": [
248
+ "RFC1712"
249
+ ],
250
+ "code": 27,
251
+ "name": "GPOS",
252
+ "description": "Geographical Position"
253
+ },
254
+ "AAAA": {
255
+ "_code_in_hex": "0x001C",
256
+ "_standards": [
257
+ "RFC3596"
258
+ ],
259
+ "code": 28,
260
+ "name": "AAAA",
261
+ "description": "IP6 Address"
262
+ },
263
+ "LOC": {
264
+ "_code_in_hex": "0x001D",
265
+ "_standards": [
266
+ "RFC1876"
267
+ ],
268
+ "code": 29,
269
+ "name": "LOC",
270
+ "description": "Location Information"
271
+ },
272
+ "NXT": {
273
+ "_code_in_hex": "0x001E",
274
+ "_standards": [
275
+ "RFC2535",
276
+ "RFC3755"
277
+ ],
278
+ "code": 30,
279
+ "name": "NXT",
280
+ "description": "Next Domain"
281
+ },
282
+ "EID": {
283
+ "_code_in_hex": "0x001F",
284
+ "_standards": [
285
+ "RFC6676"
286
+ ],
287
+ "code": 31,
288
+ "name": "EID",
289
+ "description": "Endpoint Identifier"
290
+ },
291
+ "NIMLOC": {
292
+ "_code_in_hex": "0x0020",
293
+ "_standards": [
294
+ "RFC6741"
295
+ ],
296
+ "code": 32,
297
+ "name": "NIMLOC",
298
+ "description": "Nimrod Locator"
299
+ },
300
+ "SRV": {
301
+ "_code_in_hex": "0x0021",
302
+ "_standards": [
303
+ "RFC2782"
304
+ ],
305
+ "code": 33,
306
+ "name": "SRV",
307
+ "description": "Server Selection"
308
+ },
309
+ "ATMA": {
310
+ "_code_in_hex": "0x0022",
311
+ "_standards": [
312
+ "RFC2937"
313
+ ],
314
+ "code": 34,
315
+ "name": "ATMA",
316
+ "description": "ATM Address"
317
+ },
318
+ "NAPTR": {
319
+ "_code_in_hex": "0x0023",
320
+ "_standards": [
321
+ "RFC2915"
322
+ ],
323
+ "code": 35,
324
+ "name": "NAPTR",
325
+ "description": "Naming Authority Pointer"
326
+ },
327
+ "KX": {
328
+ "_code_in_hex": "0x0024",
329
+ "_standards": [
330
+ "RFC2230"
331
+ ],
332
+ "code": 36,
333
+ "name": "KX",
334
+ "description": "Key Exchanger"
335
+ },
336
+ "CERT": {
337
+ "_code_in_hex": "0x0025",
338
+ "_standards": [
339
+ "RFC4398"
340
+ ],
341
+ "code": 37,
342
+ "name": "CERT",
343
+ "description": "CERT"
344
+ },
345
+ "A6": {
346
+ "_code_in_hex": "0x0026",
347
+ "_standards": [
348
+ "RFC2874",
349
+ "RFC3226",
350
+ "RFC6563"
351
+ ],
352
+ "code": 38,
353
+ "name": "A6",
354
+ "description": "A6"
355
+ },
356
+ "DNAME": {
357
+ "_code_in_hex": "0x0027",
358
+ "_standards": [
359
+ "RFC6672"
360
+ ],
361
+ "code": 39,
362
+ "name": "DNAME",
363
+ "description": "DNAME"
364
+ },
365
+ "SINK": {
366
+ "_code_in_hex": "0x0028",
367
+ "_standards": [
368
+ "draft-eastlake-kitchen-sink"
369
+ ],
370
+ "code": 40,
371
+ "name": "SINK",
372
+ "description": "SINK"
373
+ },
374
+ "OPT": {
375
+ "_code_in_hex": "0x0029",
376
+ "_standards": [
377
+ "RFC6891"
378
+ ],
379
+ "code": 41,
380
+ "name": "OPT",
381
+ "description": "OPT"
382
+ },
383
+ "APL": {
384
+ "_code_in_hex": "0x002A",
385
+ "_standards": [
386
+ "RFC3123"
387
+ ],
388
+ "code": 42,
389
+ "name": "APL",
390
+ "description": "APL"
391
+ },
392
+ "DS": {
393
+ "_code_in_hex": "0x002B",
394
+ "_standards": [
395
+ "RFC4034"
396
+ ],
397
+ "code": 43,
398
+ "name": "DS",
399
+ "description": "Delegation Signer"
400
+ },
401
+ "SSHFP": {
402
+ "_code_in_hex": "0x002C",
403
+ "_standards": [
404
+ "RFC4255"
405
+ ],
406
+ "code": 44,
407
+ "name": "SSHFP",
408
+ "description": "SSH Key Fingerprint"
409
+ },
410
+ "IPSECKEY": {
411
+ "_code_in_hex": "0x002D",
412
+ "_standards": [
413
+ "RFC4025"
414
+ ],
415
+ "code": 45,
416
+ "name": "IPSECKEY",
417
+ "description": "IPSECKEY"
418
+ },
419
+ "RRSIG": {
420
+ "_code_in_hex": "0x002E",
421
+ "_standards": [
422
+ "RFC4034"
423
+ ],
424
+ "code": 46,
425
+ "name": "RRSIG",
426
+ "description": "RRSIG"
427
+ },
428
+ "NSEC": {
429
+ "_code_in_hex": "0x002F",
430
+ "_standards": [
431
+ "RFC4034",
432
+ "RFC9077"
433
+ ],
434
+ "code": 47,
435
+ "name": "NSEC",
436
+ "description": "NSEC"
437
+ },
438
+ "DNSKEY": {
439
+ "_code_in_hex": "0x0030",
440
+ "_standards": [
441
+ "RFC4034"
442
+ ],
443
+ "code": 48,
444
+ "name": "DNSKEY",
445
+ "description": "DNSKEY"
446
+ },
447
+ "DHCID": {
448
+ "_code_in_hex": "0x0031",
449
+ "_standards": [
450
+ "RFC4701"
451
+ ],
452
+ "code": 49,
453
+ "name": "DHCID",
454
+ "description": "DHCID"
455
+ },
456
+ "NSEC3": {
457
+ "_code_in_hex": "0x0032",
458
+ "_standards": [
459
+ "RFC5155",
460
+ "RFC9077"
461
+ ],
462
+ "code": 50,
463
+ "name": "NSEC3",
464
+ "description": "NSEC3"
465
+ },
466
+ "NSEC3PARAM": {
467
+ "_code_in_hex": "0x0033",
468
+ "_standards": [
469
+ "RFC5155"
470
+ ],
471
+ "code": 51,
472
+ "name": "NSEC3PARAM",
473
+ "description": "NSEC3PARAM"
474
+ },
475
+ "TLSA": {
476
+ "_code_in_hex": "0x0034",
477
+ "_standards": [
478
+ "RFC6698"
479
+ ],
480
+ "code": 52,
481
+ "name": "TLSA",
482
+ "description": "TLSA"
483
+ },
484
+ "SMIMEA": {
485
+ "_code_in_hex": "0x0035",
486
+ "_standards": [
487
+ "RFC8162"
488
+ ],
489
+ "code": 53,
490
+ "name": "SMIMEA",
491
+ "description": "S/MIME cert association"
492
+ },
493
+ "HIP": {
494
+ "_code_in_hex": "0x0037",
495
+ "_standards": [
496
+ "RFC8005"
497
+ ],
498
+ "code": 55,
499
+ "name": "HIP",
500
+ "description": "Host Identity Protocol"
501
+ },
502
+ "NINFO": {
503
+ "_code_in_hex": "0x0038",
504
+ "_standards": [
505
+ ],
506
+ "code": 56,
507
+ "name": "NINFO",
508
+ "description": "NINFO"
509
+ },
510
+ "RKEY": {
511
+ "_code_in_hex": "0x0039",
512
+ "_standards": [
513
+ ],
514
+ "code": 57,
515
+ "name": "RKEY",
516
+ "description": "RKEY"
517
+ },
518
+ "TALINK": {
519
+ "_code_in_hex": "0x003A",
520
+ "_standards": [
521
+ ],
522
+ "code": 58,
523
+ "name": "TALINK",
524
+ "description": "Trust Anchor LINK"
525
+ },
526
+ "CDS": {
527
+ "_code_in_hex": "0x003B",
528
+ "_standards": [
529
+ "RFC7344"
530
+ ],
531
+ "code": 59,
532
+ "name": "CDS",
533
+ "description": "Child DS"
534
+ },
535
+ "CDNSKEY": {
536
+ "_code_in_hex": "0x003C",
537
+ "_standards": [
538
+ "RFC7344"
539
+ ],
540
+ "code": 60,
541
+ "name": "CDNSKEY",
542
+ "description": "DNSKEY(s) the Child wants reflected in DS"
543
+ },
544
+ "OPENPGPKEY": {
545
+ "_code_in_hex": "0x003D",
546
+ "_standards": [
547
+ "RFC7929"
548
+ ],
549
+ "code": 61,
550
+ "name": "OPENPGPKEY",
551
+ "description": "OpenPGP Key"
552
+ },
553
+ "CSYNC": {
554
+ "_code_in_hex": "0x003E",
555
+ "_standards": [
556
+ "RFC7477"
557
+ ],
558
+ "code": 62,
559
+ "name": "CSYNC",
560
+ "description": "Child-To-Parent Synchronization"
561
+ },
562
+ "ZONEMD": {
563
+ "_code_in_hex": "0x003F",
564
+ "_standards": [
565
+ "RFC8976"
566
+ ],
567
+ "code": 63,
568
+ "name": "ZONEMD",
569
+ "description": "Message Digest Over Zone Data"
570
+ },
571
+ "SVCB": {
572
+ "_code_in_hex": "0x0040",
573
+ "_standards": [
574
+ "RFC-ietf-dnsop-svcb-https-12"
575
+ ],
576
+ "code": 64,
577
+ "name": "SVCB",
578
+ "description": "General Purpose Service Binding"
579
+ },
580
+ "HTTPS": {
581
+ "_code_in_hex": "0x0041",
582
+ "_standards": [
583
+ "RFC-ietf-dnsop-svcb-https-12"
584
+ ],
585
+ "code": 65,
586
+ "name": "HTTPS",
587
+ "description": "Service Binding type for use with HTTP"
588
+ },
589
+ "SPF": {
590
+ "_code_in_hex": "0x0063",
591
+ "_standards": [
592
+ "RFC7208"
593
+ ],
594
+ "code": 99,
595
+ "name": "SPF",
596
+ "description": null
597
+ },
598
+ "UINFO": {
599
+ "_code_in_hex": "0x0064",
600
+ "_standards": [
601
+ "IANA-Reserved"
602
+ ],
603
+ "code": 100,
604
+ "name": "UINFO",
605
+ "description": null
606
+ },
607
+ "UID": {
608
+ "_code_in_hex": "0x0065",
609
+ "_standards": [
610
+ "IANA-Reserved"
611
+ ],
612
+ "code": 101,
613
+ "name": "UID",
614
+ "description": null
615
+ },
616
+ "GID": {
617
+ "_code_in_hex": "0x0066",
618
+ "_standards": [
619
+ "IANA-Reserved"
620
+ ],
621
+ "code": 102,
622
+ "name": "GID",
623
+ "description": null
624
+ },
625
+ "UNSPEC": {
626
+ "_code_in_hex": "0x0067",
627
+ "_standards": [
628
+ "IANA-Reserved"
629
+ ],
630
+ "code": 103,
631
+ "name": "UNSPEC",
632
+ "description": null
633
+ },
634
+ "NID": {
635
+ "_code_in_hex": "0x0068",
636
+ "_standards": [
637
+ "RFC6742"
638
+ ],
639
+ "code": 104,
640
+ "name": "NID",
641
+ "description": null
642
+ },
643
+ "L32": {
644
+ "_code_in_hex": "0x0069",
645
+ "_standards": [
646
+ "RFC6742"
647
+ ],
648
+ "code": 105,
649
+ "name": "L32",
650
+ "description": null
651
+ },
652
+ "L64": {
653
+ "_code_in_hex": "0x006A",
654
+ "_standards": [
655
+ "RFC6742"
656
+ ],
657
+ "code": 106,
658
+ "name": "L64",
659
+ "description": null
660
+ },
661
+ "LP": {
662
+ "_code_in_hex": "0x006B",
663
+ "_standards": [
664
+ "RFC6742"
665
+ ],
666
+ "code": 107,
667
+ "name": "LP",
668
+ "description": null
669
+ },
670
+ "EUI48": {
671
+ "_code_in_hex": "0x006C",
672
+ "_standards": [
673
+ "RFC7043"
674
+ ],
675
+ "code": 108,
676
+ "name": "EUI48",
677
+ "description": "an EUI-48 address"
678
+ },
679
+ "EUI64": {
680
+ "_code_in_hex": "0x006D",
681
+ "_standards": [
682
+ "RFC7043"
683
+ ],
684
+ "code": 109,
685
+ "name": "EUI64",
686
+ "description": "an EUI-64 address"
687
+ },
688
+ "TKEY": {
689
+ "_code_in_hex": "0x00F9",
690
+ "_standards": [
691
+ "RFC2930"
692
+ ],
693
+ "code": 249,
694
+ "name": "TKEY",
695
+ "description": "Transaction Key"
696
+ },
697
+ "TSIG": {
698
+ "_code_in_hex": "0x00FA",
699
+ "_standards": [
700
+ "RFC8945"
701
+ ],
702
+ "code": 250,
703
+ "name": "TSIG",
704
+ "description": "Transaction Signature"
705
+ },
706
+ "IXFR": {
707
+ "_code_in_hex": "0x00FB",
708
+ "_standards": [
709
+ "RFC1995"
710
+ ],
711
+ "code": 251,
712
+ "name": "IXFR",
713
+ "description": "incremental transfer"
714
+ },
715
+ "AXFR": {
716
+ "_code_in_hex": "0x00FC",
717
+ "_standards": [
718
+ "RFC1035",
719
+ "RFC5936"
720
+ ],
721
+ "code": 252,
722
+ "name": "AXFR",
723
+ "description": "transfer of an entire zone"
724
+ },
725
+ "MAILB": {
726
+ "_code_in_hex": "0x00FD",
727
+ "_standards": [
728
+ "RFC1035"
729
+ ],
730
+ "code": 253,
731
+ "name": "MAILB",
732
+ "description": "mailbox-related RRs"
733
+ },
734
+ "MAILA": {
735
+ "_code_in_hex": "0x00FE",
736
+ "_standards": [
737
+ "RFC1035"
738
+ ],
739
+ "code": 254,
740
+ "name": "MAILA",
741
+ "description": "mail agent RRs"
742
+ },
743
+ "URI": {
744
+ "_code_in_hex": "0x0100",
745
+ "_standards": [
746
+ "RFC7553"
747
+ ],
748
+ "code": 256,
749
+ "name": "URI",
750
+ "description": "URI"
751
+ },
752
+ "CAA": {
753
+ "_code_in_hex": "0x0101",
754
+ "_standards": [
755
+ "RFC8659"
756
+ ],
757
+ "code": 257,
758
+ "name": "CAA",
759
+ "description": "Certification Authority Restriction"
760
+ },
761
+ "AVC": {
762
+ "_code_in_hex": "0x0102",
763
+ "_standards": [
764
+ ],
765
+ "code": 258,
766
+ "name": "AVC",
767
+ "description": "Application Visibility and Control"
768
+ },
769
+ "DOA": {
770
+ "_code_in_hex": "0x0103",
771
+ "_standards": [
772
+ "draft-durand-doa-over-dns"
773
+ ],
774
+ "code": 259,
775
+ "name": "DOA",
776
+ "description": "Digital Object Architecture"
777
+ },
778
+ "AMTRELAY": {
779
+ "_code_in_hex": "0x0104",
780
+ "_standards": [
781
+ "RFC8777"
782
+ ],
783
+ "code": 260,
784
+ "name": "AMTRELAY",
785
+ "description": "Automatic Multicast Tunneling Relay"
786
+ },
787
+ "TA": {
788
+ "_code_in_hex": "0x8000",
789
+ "_standards": [
790
+ ],
791
+ "code": 32768,
792
+ "name": "TA",
793
+ "description": "DNSSEC Trust Authorities"
794
+ },
795
+ "DLV": {
796
+ "_code_in_hex": "0x8001",
797
+ "_standards": [
798
+ "RFC8749",
799
+ "RFC4431"
800
+ ],
801
+ "code": 32769,
802
+ "name": "DLV",
803
+ "description": "DNSSEC Lookaside Validation"
804
+ }
805
+ }