1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_key_new_frm_fp_rsa, ldns_key_new_frm_fp_rsa_l
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 RSA* ldns_key_new_frm_fp_rsa(FILE *fp);
16
17 RSA* ldns_key_new_frm_fp_rsa_l(FILE *fp, int *line_nr);
18
20 ldns_key_new_frm_fp_rsa() frm_fp helper function. This function parses
21 the remainder of the (RSA) priv. key file generated from bind9
22 fp: the file to parse
23 Returns NULL on failure otherwise a RSA structure
24
25 ldns_key_new_frm_fp_rsa_l() frm_fp helper function. This function
26 parses the remainder of the (RSA) priv. key file generated from
27 bind9
28 fp: the file to parse
29 line_nr: pointer to an integer containing the current line num‐
30 ber (for debugging purposes)
31 Returns NULL on failure otherwise a RSA structure
32
34 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
35 Miek Gieben.
36
37
39 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
40 http://www.nlnetlabs.nl/bugs/index.html
41
42
44 Copyright (c) 2004 - 2006 NLnet Labs.
45
46 Licensed under the BSD License. There is NO warranty; not even for MER‐
47 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
48
49
51 ldns_key_new_frm_fp, ldns_key. And perldoc Net::DNS, RFC1034, RFC1035,
52 RFC4033, RFC4034 and RFC4035.
53
55 This manpage was automaticly generated from the ldns source code by use
56 of Doxygen and some perl.
57
58
59
60 30 May 2006 ldns(3)