1Net::DNS::RR::HIP(3)  User Contributed Perl Documentation Net::DNS::RR::HIP(3)
2
3
4

NAME

6       Net::DNS::RR::HIP - DNS HIP resource record
7

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR('name IN HIP algorithm hit key servers');
11

DESCRIPTION

13       Class for DNS Host Identity Protocol (HIP) resource records.
14

METHODS

16       The available methods are those inherited from the base class augmented
17       by the type-specific methods defined in this package.
18
19       Use of undocumented package features or direct access to internal data
20       structures is discouraged and could result in program termination or
21       other unpredictable behaviour.
22
23   pkalgorithm
24           $pkalgorithm = $rr->pkalgorithm;
25           $rr->pkalgorithm( $pkalgorithm );
26
27       The PK algorithm field indicates the public key cryptographic algorithm
28       and the implied public key field format.  The values are those defined
29       for the IPSECKEY algorithm type [RFC4025].
30
31   hit
32           $hit = $rr->hit;
33           $rr->hit( $hit );
34
35       The hexadecimal representation of the host identity tag.
36
37   hitbin
38           $hitbin = $rr->hitbin;
39           $rr->hitbin( $hitbin );
40
41       The binary representation of the host identity tag.
42
43   pubkey
44   key
45           $key = $rr->key;
46           $rr->key( $key );
47
48       The hexadecimal representation of the public key.
49
50   keybin
51           $keybin = $rr->keybin;
52           $rr->keybin( $keybin );
53
54       The binary representation of the public key.
55
56   servers
57           @servers = $rr->servers;
58
59       Optional list of domain names of rendezvous servers.
60
62       Copyright (c)2009 Olaf Kolkman, NLnet Labs
63
64       All rights reserved.
65
66       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
67

LICENSE

69       Permission to use, copy, modify, and distribute this software and its
70       documentation for any purpose and without fee is hereby granted,
71       provided that the above copyright notice appear in all copies and that
72       both that copyright notice and this permission notice appear in
73       supporting documentation, and that the name of the author not be used
74       in advertising or publicity pertaining to distribution of the software
75       without specific prior written permission.
76
77       THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
78       OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
79       MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
80       IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
81       CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
82       TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
83       SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
84

SEE ALSO

86       perl, Net::DNS, Net::DNS::RR, RFC8005
87
88
89
90perl v5.26.3                      2018-02-09              Net::DNS::RR::HIP(3)
Impressum