1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_key_rsa_key, ldns_key_dsa_key, ldns_key_algorithm,
7 ldns_key_hmac_key
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 RSA* ldns_key_rsa_key(ldns_key *k);
22
23 DSA* ldns_key_dsa_key(ldns_key *k);
24
25 ldns_key_algorithm();
26
27 ldns_key_hmac_key();
28
30 ldns_key_rsa_key() returns the (openssl) RSA struct contained in the
31 key
32
33 ldns_key_dsa_key() returns the (openssl) DSA struct contained in the
34 key
35
36 ldns_key_algorithm()
37
38 ldns_key_hmac_key()
39
41 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
42 Rozendaal and 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 Be sure to select ldns as the product.
50
51
53 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
54 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
55 PARTICULAR PURPOSE.
56
58 perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and RFC4035.
59
61 This manpage was automaticly generated from the ldns source code by use
62 of Doxygen and some perl.
63
64
65
66 ldns(25 Apr 2005)