1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_key_origttl, ldns_key_inception, ldns_key_expiration,
7 ldns_key_keytag, ldns_key_pubkey_owner, ldns_key_flags
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 uint32_t ldns_key_origttl(const ldns_key *k);
17
18 uint32_t ldns_key_inception(const ldns_key *k);
19
20 uint32_t ldns_key_expiration(const ldns_key *k);
21
22 uint16_t ldns_key_keytag(const ldns_key *k);
23
24 ldns_rdf* ldns_key_pubkey_owner(const ldns_key *k);
25
26 uint16_t ldns_key_flags(const ldns_key *k);
27
29 ldns_key_origttl() return the original ttl of the key
30 k: the key
31 Returns the original ttl
32
33 ldns_key_inception() return the key's inception date
34 k: the key
35 Returns the inception date
36
37 ldns_key_expiration() return the key's expiration date
38 k: the key
39 Returns the experiration date
40
41 ldns_key_keytag() return the keytag
42 k: the key
43 Returns the keytag
44
45 ldns_key_pubkey_owner() return the public key's owner
46 k: the key
47 Returns the owner
48
49 ldns_key_flags() return the flag of the key
50 k: the key
51 Returns the flag
52
54 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
55 Miek Gieben.
56
57
59 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
60 http://www.nlnetlabs.nl/bugs/index.html
61
62
64 Copyright (c) 2004 - 2006 NLnet Labs.
65
66 Licensed under the BSD License. There is NO warranty; not even for MER‐
67 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
68
69
71 ldns_key. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034
72 and RFC4035.
73
75 This manpage was automaticly generated from the ldns source code by use
76 of Doxygen and some perl.
77
78
79
80 30 May 2006 ldns(3)