1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_key_buf2dsa, ldns_key_buf2rsa
7
8
10 #ifdef HAVE_STDINT_H
11 #include <stdint.h>
12 #endif /* HAVE_STDINT_H */
13
14 #ifdef HAVE_STDBOOL_H
15 #include <stdbool.h>
16 #endif /* HAVE_STDBOOL_H */
17
18 #include <ldns/ldns.h>
19
20 DSA* ldns_key_buf2dsa(ldns_buffer *key);
21
22 RSA* ldns_key_buf2rsa(ldns_buffer *key);
23
25 ldns_key_buf2dsa() converts a buffer holding key material to a DSA key
26 in openssl.
27
28 key: the key to convert
29 Returns a DSA * structure with the key material
30
31 ldns_key_buf2rsa() converts a buffer holding key material to a RSA key
32 in openssl.
33
34 key: the key to convert
35 Returns a RSA * structure with the key material
36
38 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
39 Rozendaal and Miek Gieben.
40
41
43 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
44 http://www.nlnetlabs.nl/bugs/index.html
45
46 Be sure to select ldns as the product.
47
48
50 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
51 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
52 PARTICULAR PURPOSE.
53
54
56 ldns_key_rr2ds. And perldoc Net::DNS, RFC1043, RFC1035, RFC4033,
57 RFC4034 and RFC4035.
58
60 This manpage was automaticly generated from the ldns source code by use
61 of Doxygen and some perl.
62
63
64
65 ldns(25 Apr 2005)