1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_key_list_key_count, ldns_key_list_key, ldns_key_rsa_key,
7 ldns_key_dsa_key, ldns_key_algorithm, ldns_key_hmac_key,
8 ldns_key_origttl, ldns_key_inception, ldns_key_expiration,
9 ldns_key_keytag, ldns_key_pubkey_owner, ldns_key_flags
10
11
13 #ifdef HAVE_STDINT_H
14 #include <stdint.h>
15 #endif /* HAVE_STDINT_H */
16
17 #ifdef HAVE_STDBOOL_H
18 #include <stdbool.h>
19 #endif /* HAVE_STDBOOL_H */
20
21 #include <ldns/ldns.h>
22
23 size_t ldns_key_list_key_count(ldns_key_list *key_list);
24
25 ldns_key* ldns_key_list_key(ldns_key_list *key, size_t nr);
26
27 RSA* ldns_key_rsa_key(ldns_key *k);
28
29 DSA* ldns_key_dsa_key(ldns_key *k);
30
31 ldns_key_algorithm();
32
33 ldns_key_hmac_key();
34
35 ldns_key_origttl();
36
37 ldns_key_inception();
38
39 ldns_key_expiration();
40
41 ldns_key_keytag();
42
43 ldns_key_pubkey_owner();
44
45 ldns_key_flags();
46
48 ldns_key_list_key_count() returns the number of keys in the key list
49
50 ldns_key_list_key() returns a pointer to the key in the list at the
51 given position
52
53 ldns_key_rsa_key() returns the (openssl) RSA struct contained in the
54 key
55
56 ldns_key_dsa_key() returns the (openssl) DSA struct contained in the
57 key
58
59 ldns_key_algorithm()
60
61 ldns_key_hmac_key()
62
63 ldns_key_origttl()
64
65 ldns_key_inception()
66
67 ldns_key_expiration()
68
69 ldns_key_keytag()
70
71 ldns_key_pubkey_owner()
72
73 ldns_key_flags()
74
76 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
77 Rozendaal and Miek Gieben.
78
79
81 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
82 http://www.nlnetlabs.nl/bugs/index.html
83
84 Be sure to select ldns as the product.
85
86
88 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
89 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
90 PARTICULAR PURPOSE.
91
93 perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and RFC4035.
94
96 This manpage was automaticly generated from the ldns source code by use
97 of Doxygen and some perl.
98
99
100
101 ldns(25 Apr 2005)