1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_verify_rrsig_dsa, ldns_verify_rrsig_rsasha1, ldns_ver‐
7 ify_rrsig_rsamd5 - verify signature data buffers
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 ldns_status ldns_verify_rrsig_dsa(ldns_buffer *sig, ldns_buffer *rrset,
17 ldns_buffer *key);
18
19 ldns_status ldns_verify_rrsig_rsasha1(ldns_buffer *sig, ldns_buffer
20 *rrset, ldns_buffer *key);
21
22 ldns_status ldns_verify_rrsig_rsamd5(ldns_buffer *sig, ldns_buffer
23 *rrset, ldns_buffer *key);
24
26 ldns_verify_rrsig_dsa() verifies a buffer with signature data (DSA) for
27 a buffer with rrset data with a buffer with key data.
28
29 sig: the signature data
30 rrset: the rrset data, sorted and processed for verification
31 key: the key data
32
33 ldns_verify_rrsig_rsasha1() verifies a buffer with signature data
34 (RSASHA1) for a buffer with rrset data with a buffer with key
35 data.
36
37 sig: the signature data
38 rrset: the rrset data, sorted and processed for verification
39 key: the key data
40
41 ldns_verify_rrsig_rsamd5() verifies a buffer with signature data
42 (RSAMD5) for a buffer with rrset data with a buffer with key
43 data.
44
45 sig: the signature data
46 rrset: the rrset data, sorted and processed for verification
47 key: the key data
48
50 The ldns team at NLnet Labs.
51
52
54 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
55 http://www.nlnetlabs.nl/bugs/index.html
56
57
59 Copyright (c) 2004 - 2006 NLnet Labs.
60
61 Licensed under the BSD License. There is NO warranty; not even for MER‐
62 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
63
64
66 ldns_key, ldns_sign_public, ldns_zone_sign, ldns_verify, ldns_ver‐
67 ify_rrsig. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034
68 and RFC4035.
69
71 This manpage was automatically generated from the ldns source code.
72
73
74
75 30 May 2006 ldns(3)