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
//! DNSSEC Algorithm Numbers
use std::str;
//------------ SecAlg -------------------------------------------------------
int_enum!{
/// Security Algorithm Numbers.
///
/// These numbers are used in various security related record types.
///
/// For the currently registered values see the [IANA registration].
///
/// [IANA registration]: http://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml#dns-sec-alg-numbers-1].
=>
SecAlg, u8;
/// Delete DS
///
/// This algorithm is used in RFC 8087 to signal to the parent that a
/// certain DS record should be deleted. It is _not_ an actual algorithm
/// and can neither be used in zone nor transaction signing.
(DeleteDs => 0, b"DELETE")
/// RSA/MD5
///
/// This algorithm was described in RFC 2537 and since has been
/// deprecated due to weaknesses of the MD5 hash algorithm by RFC 3110
/// which suggests to use RSA/SHA1 instead.
///
/// This algorithm may not be used for zone signing but may be used
/// for transaction security.
(RsaMd5 => 1, b"RSAMD5")
/// Diffie-Hellman
///
/// This algorithm is described in RFC 2539 for storing Diffie-Hellman
/// (DH) keys in DNS resource records. It can not be used for zone
/// signing but only for transaction security.
(Dh => 2, b"DH")
/// DSA/SHA1
///
/// This algorithm is described in RFC 2536. It may be used both for
/// zone signing and transaction security.
(Dsa => 3, b"DSA")
/// RSA/SHA-1
///
/// This algorithm is described in RFC 3110. It may be used both for
/// zone signing and transaction security. It is mandatory for DNSSEC
/// implementations.
(RsaSha1 => 5, b"RSASHA1")
/// DSA-NSEC3-SHA1
///
/// This value is an alias for `Dsa` for use within NSEC3 records.
(DsaNsec3Sha1 => 6, b"DSA-NSEC3-SHA1")
/// RSASHA1-NSEC3-SHA1
///
/// This value is an alias for `RsaSha1` for use within NSEC3 records.
(RsaSha1Nsec3Sha1 => 7, b"RSASHA1-NSEC3-SHA1")
/// RSA/SHA-256
///
/// This algorithm is described in RFC 5702. It may be used for zone
/// signing only.
(RsaSha256 => 8, b"RSASHA256")
/// RSA/SHA-512
///
/// This algorithm is described in RFC 5702. It may be used for zone
/// signing only.
(RsaSha512 => 10, b"RSASHA512")
/// GOST R 34.10-2001
///
/// This algorithm is described in RFC 5933. It may be used for zone
/// signing only.
(EccGost => 12, b"ECC-GOST")
/// ECDSA Curve P-256 with SHA-256
///
/// This algorithm is described in RFC 6605. It may be used for zone
/// signing only.
(EcdsaP256Sha256 => 13, b"ECDSAP256SHA256")
/// ECDSA Curve P-384 with SHA-384
///
/// This algorithm is described in RFC 6605. It may be used for zone
/// signing only.
(EcdsaP384Sha384 => 14, b"ECDSAP384SHA384")
/// ED25519
///
/// This algorithm is described in RFC 8080.
(Ed25519 => 15, b"ED25519")
/// ED448
///
/// This algorithm is described in RFC 8080.
(Ed448 => 16, b"ED448")
/// Reserved for Indirect Keys
///
/// This value is reserved by RFC 4034.
(Indirect => 252, b"INDIRECT")
/// A private algorithm identified by a domain name.
///
/// This value is defined in RFC 4034.
(PrivateDns => 253, b"PRIVATEDNS")
/// A private algorithm identified by a ISO OID.
///
/// This value is defined in RFC 4034.
(PrivateOid => 254, b"PRIVATEOID")
}
int_enum_str_with_decimal!(SecAlg, u8, "unknown algorithm");