1Net::DNS::SEC::Keyset(3U)ser Contributed Perl DocumentatiNoent::DNS::SEC::Keyset(3)
2
3
4
6 Net::DNS::SEC::Keyset - DNSSEC Keyset object class
7
9 use Net::DNS::SEC::Keyset;
10
12 A keyset is an "administrative" unit used for DNSSEC maintenance.
13
14 This class provides interfaces for creating, reading and writing
15 keysets.
16
17 Object methods are provided to extract DNSKEY, RRSIG and DS records.
18
19 Note that this class is still being developed. Attributes and methods
20 are subject to change.
21
22 new (from file)
23 $keyset = Net::DNS::SEC::Keyset->new( $filename );
24 $keyset = Net::DNS::SEC::Keyset->new( $filename, $directory );
25 die Net::DNS::SEC::Keyset->keyset_err unless $keyset;
26
27 Constructor method which reads the specified keyset file and returns a
28 keyset object.
29
30 The optional second argument specifies the filename base directory.
31
32 Sets keyset_err and returns undef on failure.
33
34 new (by signing keys)
35 $keyset = Net::DNS::SEC::Keyset->new( [@keyrr], $privatekeypath );
36 die Net::DNS::SEC::Keyset->keyset_err unless $keyset;
37
38 Creates a keyset object from the keys provided through the reference to
39 an array of Net::DNS::RR::DNSKEY objects.
40
41 The method will create and self-sign the whole keyset. The private keys
42 as generated by the BIND dnssec-keygen tool are assumed to be in the
43 current directory or, if specified, the directory indicated by
44 $privatekeypath.
45
46 Sets keyset_err and returns undef on failure.
47
48 new (from key and sig RRsets)
49 $keyset = Net::DNS::Keyset->new( [@keyrr], [@sigrr] );
50 die Net::DNS::SEC::Keyset->keyset_err unless $keyset;
51
52 Creates a keyset object from the keys provided through the references
53 to arrays of Net::DNS::RR::DNSKEY and Net::DNS::RR::RRSIG objects.
54
55 Sets keyset_err and returns undef on failure.
56
57 new (from Packet)
58 $resolver = Net::DNS::Resolver->new;
59 $resolver->dnssec(1);
60
61 $reply = $res->send ( "example.com", "DNSKEY" );
62
63 $keyset = Net::DNS::SEC::Keyset->new( $reply );
64 die Net::DNS::SEC::Keyset->keyset_err unless $keyset;
65
66 Creates a keyset object from a Net::DNS::Packet that contains the
67 answer to a query for key records at the zone apex.
68
69 This is the method you should use for automatically fetching keys.
70
71 Sets keyset_err and returns undef on failure.
72
73 keys
74 @keyrr = $keyset->keys;
75
76 Returns an array of Net::DNS::RR::DNSKEY objects.
77
78 sigs
79 @sigrr = $keyset->sigs;
80
81 Returns an array of Net::DNS::RR::RRSIG objects.
82
83 extract_ds
84 @ds = $keyset->extract_ds;
85 die Net::DNS::SEC::Keyset->keyset_err unless @ds;
86
87 Extracts DS records from the keyset. Note that the keyset will be
88 verified during extraction. All keys will need to have a valid self-
89 signature.
90
91 The method sets keyset_err if verification fails.
92
93 verify
94 @keytags = $keyset->verify();
95 die Net::DNS::SEC::Keyset->keyset_err unless @keytags;
96
97 $keyset->verify( $keytag ) || die $keyset->keyset_err;
98
99 If no arguments are given:
100
101 • Verifies if all signatures present verify the keyset.
102
103 • Verifies if there are DNSKEYs with the SEP flag set, there is at
104 least one RRSIG made using that key.
105
106 • Verifies that if there are no DNSKEYs with the SEP flag set there is
107 at least one RRSIG made with one of the keys from the keyset.
108
109 If an argument is given, it is should be the numeric keytag of the key
110 in the keyset which will be verified using the corresponding RRSIG.
111
112 The method returns a list of keytags of verified keys in the keyset.
113
114 The method sets keyset_err and returns empty list if verification
115 fails.
116
117 keyset_err
118 $keyset_err = Net::DNS::SEC::Keyset->keyset_err;
119
120 Returns the keyset error string.
121
122 string
123 $string = $keyset->string;
124
125 Returns a string representation of the keyset.
126
127 print
128 $keyset->print; # similar to print( $keyset->string )
129
130 Prints the keyset.
131
132 writekeyset
133 $keyset->writekeyset;
134 $keyset->writekeyset( $path );
135 $keyset->writekeyset( $prefix );
136 $keyset->writekeyset( $prefix, $path );
137
138 Writes the keyset to a file named "keyset-<domain>." in the current
139 working directory or directory defined by the optional $path argument.
140
141 The optional $prefix argument specifies the prefix that will be
142 prepended to the domain name to form the keyset filename.
143
145 Copyright (c)2002 RIPE NCC. Author Olaf M. Kolkman
146
147 Portions Copyright (c)2014 Dick Franks
148
149 All Rights Reserved
150
152 Permission to use, copy, modify, and distribute this software and its
153 documentation for any purpose and without fee is hereby granted,
154 provided that the above copyright notice appear in all copies and that
155 both that copyright notice and this permission notice appear in
156 supporting documentation, and that the name of the author not be used
157 in advertising or publicity pertaining to distribution of the software
158 without specific prior written permission.
159
160 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
161 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
162 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
163 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
164 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
165 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
166 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
167
168
169
170perl v5.32.1 2021-01-27 Net::DNS::SEC::Keyset(3)