1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_dnssec_verify_denial, ldns_dnssec_verify_denial_nsec3 - verify
7 denial of existence
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 ldns_status ldns_dnssec_verify_denial(ldns_rr *rr, ldns_rr_list *nsecs,
17 ldns_rr_list *rrsigs);
18
19 ldns_status ldns_dnssec_verify_denial_nsec3(ldns_rr *rr, ldns_rr_list
20 *nsecs, ldns_rr_list *rrsigs, ldns_pkt_rcode packet_rcode, ldns_rr_type
21 packet_qtype, bool packet_nodata);
22
24 ldns_dnssec_verify_denial() denial is not just a river in egypt
25
26 rr: The (query) RR to check the denial of existence for
27 nsecs: The list of NSEC RRs that are supposed to deny the exis‐
28 tence of the RR
29 rrsigs: The RRSIG RR covering the NSEC RRs
30 Returns LDNS_STATUS_OK if the NSEC RRs deny the existence, error
31 code containing the reason they do not otherwise
32
33 ldns_dnssec_verify_denial_nsec3() Denial of existence using NSEC3
34 records Since NSEC3 is a bit more complicated than normal
35 denial, some context arguments are needed
36
37 rr: The (query) RR to check the denial of existence for
38 nsecs: The list of NSEC3 RRs that are supposed to deny the exis‐
39 tence of the RR
40 rrsigs: The RRSIG rr covering the NSEC RRs
41 packet_rcode: The RCODE value of the packet that provided the
42 NSEC3 RRs
43 packet_qtype: The original query RR type
44 packet_nodata: True if the providing packet had an empty ANSWER
45 section
46 Returns LDNS_STATUS_OK if the NSEC3 RRs deny the existence,
47 error code containing the reason they do not otherwise
48
50 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
51 Miek Gieben.
52
53
55 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
56 http://www.nlnetlabs.nl/bugs/index.html
57
58
60 Copyright (c) 2004 - 2006 NLnet Labs.
61
62 Licensed under the BSD License. There is NO warranty; not even for MER‐
63 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
64
65
67 ldns_dnssec_trust_tree, ldns_dnssec_data_chain. And perldoc Net::DNS,
68 RFC1034, RFC1035, RFC4033, RFC4034 and RFC4035.
69
71 This manpage was automatically generated from the ldns source code by
72 use of Doxygen and some perl.
73
74
75
76 30 May 2006 ldns(3)