1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_key_new_frm_fp_dsa, ldns_key_new_frm_fp_dsa_l
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_new_frm_fp_dsa(FILE *fp);
21
22 DSA* ldns_key_new_frm_fp_dsa_l(FILE *fp, int *line_nr);
23
25 ldns_key_new_frm_fp_dsa() frm_fp helper function. This function parsed
26 the remainder of the (DSA) priv. key file generated from bind9
27 fp: the file to parse
28 Returns NULL on failure otherwise a RSA structure
29
30 ldns_key_new_frm_fp_dsa_l() frm_fp helper function. This function
31 parsed the remainder of the (DSA) priv. key file generated from
32 bind9
33 fp: the file to parse
34 line_nr: pointer to an integer containing the current line num‐
35 ber (for debugging purposes)
36 Returns NULL on failure otherwise a RSA structure
37
39 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
40 Rozendaal and Miek Gieben.
41
42
44 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
45 http://www.nlnetlabs.nl/bugs/index.html
46
47 Be sure to select ldns as the product.
48
49
51 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
52 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
53 PARTICULAR PURPOSE.
54
55
57 ldns_key_new_frm_fp. And perldoc Net::DNS, RFC1043, RFC1035, RFC4033,
58 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)