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 Transaction Signature (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
25 The algorithm name is in the form of a domain name with the same
26 meaning as in [RFC 2845]. The algorithm determines how the secret
27 keying material agreed to using the TKEY RR is actually used to derive
28 the algorithm specific key.
29
30 inception
31 $inception = $rr->inception;
32
33 Time expressed as the number of non-leap seconds modulo 2**32 since the
34 beginning of January 1970 GMT.
35
36 expiration
37 $expiration = $rr->expiration;
38
39 Time expressed as the number of non-leap seconds modulo 2**32 since the
40 beginning of January 1970 GMT.
41
42 mode
43 $mode = $rr->mode;
44
45 The mode field specifies the general scheme for key agreement or the
46 purpose of the TKEY DNS message, as defined in [RFC2930(2.5)].
47
48 error
49 $error = $rr->error;
50
51 The error code field is an extended RCODE.
52
53 key
54 $key = $rr->key;
55
56 Sequence of octets representing the key exchange data. The meaning of
57 this data depends on the mode.
58
59 other
60 $other = $rr->other;
61
62 Not defined in [RFC2930] specification but may be used in future
63 extensions.
64
66 Copyright (c)2000 Andrew Tridgell.
67
68 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
69
70 All rights reserved.
71
72 This program is free software; you may redistribute it and/or modify it
73 under the same terms as Perl itself.
74
76 perl, Net::DNS, Net::DNS::RR, RFC2930
77
78
79
80perl v5.16.3 2012-12-28 Net::DNS::RR::TKEY(3)