1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_verify_rrsig_dsa, ldns_verify_rrsig_rsasha1, ldns_ver‐
7 ify_rrsig_rsamd5
8
9
11 #ifdef HAVE_STDINT_H
12 #include <stdint.h>
13 #endif /* HAVE_STDINT_H */
14
15 #ifdef HAVE_STDBOOL_H
16 #include <stdbool.h>
17 #endif /* HAVE_STDBOOL_H */
18
19 #include <ldns/ldns.h>
20
21 ldns_status ldns_verify_rrsig_dsa(ldns_buffer *sig, ldns_buffer *rrset,
22 ldns_buffer *key);
23
24 ldns_status ldns_verify_rrsig_rsasha1(ldns_buffer *sig, ldns_buffer
25 *rrset, ldns_buffer *key);
26
27 ldns_status ldns_verify_rrsig_rsamd5(ldns_buffer *sig, ldns_buffer
28 *rrset, ldns_buffer *key);
29
31 ldns_verify_rrsig_dsa() verifies a buffer with signature data (DSA) for
32 a buffer with rrset data with a buffer with key data.
33
34 sig: the signature data
35 rrset: the rrset data, sorted and processed for verification
36 key: the key data
37
38 ldns_verify_rrsig_rsasha1() verifies a buffer with signature data
39 (RSASHA1) for a buffer with rrset data with a buffer with key
40 data.
41
42 sig: the signature data
43 rrset: the rrset data, sorted and processed for verification
44 key: the key data
45
46 ldns_verify_rrsig_rsamd5() verifies a buffer with signature data
47 (RSAMD5) for a buffer with rrset data with a buffer with key
48 data.
49
50 sig: the signature data
51 rrset: the rrset data, sorted and processed for verification
52 key: the key data
53
55 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
56 Rozendaal and Miek Gieben.
57
58
60 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
61 http://www.nlnetlabs.nl/bugs/index.html
62
63 Be sure to select ldns as the product.
64
65
67 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
68 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
69 PARTICULAR PURPOSE.
70
72 perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 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 ldns(25 Apr 2005)