1Net::DNS::RR::TKEY(3) User Contributed Perl DocumentationNet::DNS::RR::TKEY(3)
2
3
4
6 Net::DNS::RR::TKEY - DNS TKEY resource record
7
9 use Net::DNS;
10
12 Class for DNS TSIG Key (TKEY) resource records.
13
15 The available methods are those inherited from the base class augmented
16 by the type-specific methods defined in this package.
17
18 Use of undocumented package features or direct access to internal data
19 structures is discouraged and could result in program termination or
20 other unpredictable behaviour.
21
22 algorithm
23 $algorithm = $rr->algorithm;
24 $rr->algorithm( $algorithm );
25
26 The algorithm name is in the form of a domain name with the same
27 meaning as in [RFC 2845]. The algorithm determines how the secret
28 keying material agreed to using the TKEY RR is actually used to derive
29 the algorithm specific key.
30
31 inception
32 $inception = $rr->inception;
33 $rr->inception( $inception );
34
35 Time expressed as the number of non-leap seconds modulo 2**32 since the
36 beginning of January 1970 GMT.
37
38 expiration
39 $expiration = $rr->expiration;
40 $rr->expiration( $expiration );
41
42 Time expressed as the number of non-leap seconds modulo 2**32 since the
43 beginning of January 1970 GMT.
44
45 mode
46 $mode = $rr->mode;
47 $rr->mode( $mode );
48
49 The mode field specifies the general scheme for key agreement or the
50 purpose of the TKEY DNS message, as defined in [RFC2930(2.5)].
51
52 error
53 $error = $rr->error;
54 $rr->error( $error );
55
56 The error code field is an extended RCODE.
57
58 key
59 $key = $rr->key;
60 $rr->key( $key );
61
62 Sequence of octets representing the key exchange data. The meaning of
63 this data depends on the mode.
64
65 other
66 $other = $rr->other;
67 $rr->other( $other );
68
69 Content not defined in the [RFC2930] specification but may be used in
70 future extensions.
71
73 Copyright (c)2000 Andrew Tridgell.
74
75 All rights reserved.
76
77 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
78
80 Permission to use, copy, modify, and distribute this software and its
81 documentation for any purpose and without fee is hereby granted,
82 provided that the above copyright notice appear in all copies and that
83 both that copyright notice and this permission notice appear in
84 supporting documentation, and that the name of the author not be used
85 in advertising or publicity pertaining to distribution of the software
86 without specific prior written permission.
87
88 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
89 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
90 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
91 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
92 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
93 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
94 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
95
97 perl, Net::DNS, Net::DNS::RR, RFC2930
98
99
100
101perl v5.28.1 2018-11-14 Net::DNS::RR::TKEY(3)