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
//! Delegation signer digest algorithm numbers.
//------------ DigestAlg -----------------------------------------------------
int_enum! {
/// Delegation signer digest algorithm numbers.
///
/// These numbers are used in the DS resource record to specify how the
/// key digest in the record has been generated.
///
/// For the currently registered values see the [IANA registration].
/// This type is complete as of the registry update of 2012-04-13.
///
/// [IANA registration]: https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml#ds-rr-types-1
=>
DigestAlg, u8;
/// Specifies that the SHA-1 hash function is used.
///
/// Implementation of this function is currently mandatory.
(SHA1 => 1, b"SHA-1")
/// Specifies that the SHA-256 hash function is used.
///
/// Implementation of this function is currently mandatory.
(SHA256 => 2, b"SHA-256")
/// Specifies that the GOST R 34.11-94 hash function is used.
///
/// Use of this hash function is described in [RFC 5933]. Implementing
/// the function is optional.
///
/// [RFC 5933]: https://tools.ietf.org/html/rfc5933
(GOST => 3, b"GOST R 34.11-94")
/// Specifies that the SHA-384 hash function is used.
///
/// Use of this hash function is described in [RFC 6605]. Implementing
/// the function is optional.
///
/// [RFC 6605]: https://tools.ietf.org/html/rfc6605
(SHA384 => 4, b"SHA-384")
}
int_enum_str_decimal!(DigestAlg, u8);
//============ Tests =========================================================
#[cfg(test)]
mod test {
#[cfg(feature = "serde")]
#[test]
fn ser_de() {
use super::DigestAlg;
use serde_test::{assert_tokens, Token};
assert_tokens(&DigestAlg::SHA384, &[Token::U8(4)]);
assert_tokens(&DigestAlg(100), &[Token::U8(100)]);
}
}