1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_sign_public_dsa, ldns_sign_public_rsamd5, ldns_sign_public_rsasha1
7 - sign buffer
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 ldns_rdf* ldns_sign_public_dsa(ldns_buffer *to_sign, DSA *key);
17
18 ldns_rdf* ldns_sign_public_rsamd5(ldns_buffer *to_sign, RSA *key);
19
20 ldns_rdf* ldns_sign_public_rsasha1(ldns_buffer *to_sign, RSA *key);
21
23 ldns_sign_public_dsa() Sign a buffer with the DSA key (hash with SHA1)
24 to_sign: buffer with the data
25 key: the key to use
26 Returns a ldns_rdf with the signed data
27
28 ldns_sign_public_rsamd5() Sign a buffer with the RSA key (hash with
29 MD5)
30 to_sign: buffer with the data
31 key: the key to use
32 Returns a ldns_rdf with the signed data
33
34 ldns_sign_public_rsasha1() Sign a buffer with the RSA key (hash with
35 SHA1)
36 to_sign: buffer with the data
37 key: the key to use
38 Returns a ldns_rdf with the signed data
39
41 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
42 Miek Gieben.
43
44
46 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
47 http://www.nlnetlabs.nl/bugs/index.html
48
49
51 Copyright (c) 2004 - 2006 NLnet Labs.
52
53 Licensed under the BSD License. There is NO warranty; not even for MER‐
54 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
55
56
58 ldns_sign_public. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033,
59 RFC4034 and RFC4035.
60
62 This manpage was automatically generated from the ldns source code by
63 use of Doxygen and some perl.
64
65
66
67 30 May 2006 ldns(3)