1ldns(3)                    Library Functions Manual                    ldns(3)
2
3
4

NAME

6       ldns_algorithm - numbers assigned to algorithms used in dns
7
8

SYNOPSIS

10       #include <stdint.h>
11       #include <stdbool.h>
12
13       #include <ldns/ldns.h>
14

DESCRIPTION

16       ldns_algorithm
17              Algorithms used in dns
18              enum ldns_enum_algorithm
19              {
20                      LDNS_RSAMD5             = 1,   /* RFC 4034,4035 */
21                      LDNS_DH                 = 2,
22              #if LDNS_BUILD_CONFIG_USE_DSA
23                      LDNS_DSA                = 3,
24              #endif /* LDNS_BUILD_CONFIG_USE_DSA */
25                      LDNS_ECC                = 4,
26                      LDNS_RSASHA1            = 5,
27              #if LDNS_BUILD_CONFIG_USE_DSA
28                      LDNS_DSA_NSEC3          = 6,
29              #endif /* LDNS_BUILD_CONFIG_USE_DSA */
30                      LDNS_RSASHA1_NSEC3      = 7,
31                      LDNS_RSASHA256          = 8,   /* RFC 5702 */
32                      LDNS_RSASHA512          = 10,  /* RFC 5702 */
33                      LDNS_ECC_GOST           = 12,  /* RFC 5933 */
34                      LDNS_ECDSAP256SHA256    = 13,  /* RFC 6605 */
35                      LDNS_ECDSAP384SHA384    = 14,  /* RFC 6605 */
36              #if LDNS_BUILD_CONFIG_USE_ED25519
37                   LDNS_ED25519        = 15,  /* RFC 8080 */
38              #endif /* LDNS_BUILD_CONFIG_USE_ED25519 */
39              #if LDNS_BUILD_CONFIG_USE_ED448
40                   LDNS_ED448          = 16,  /* RFC 8080 */
41              #endif /* LDNS_BUILD_CONFIG_USE_ED448 */
42                      LDNS_INDIRECT           = 252,
43                      LDNS_PRIVATEDNS         = 253,
44                      LDNS_PRIVATEOID         = 254
45              };
46              typedef enum ldns_enum_algorithm ldns_algorithm;
47

AUTHOR

49       The ldns team at NLnet Labs.
50
51

REPORTING BUGS

53       Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
54       http://www.nlnetlabs.nl/bugs/index.html
55
56
58       Copyright (c) 2004 - 2006 NLnet Labs.
59
60       Licensed under the BSD License. There is NO warranty; not even for MER‐
61       CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
62

SEE ALSO

64       perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034 and RFC4035.
65

REMARKS

67       This manpage was automatically generated from the ldns source code.
68
69
70
71                                  30 May 2006                          ldns(3)
Impressum