1Net::DNS::RR::HIP(3) User Contributed Perl Documentation Net::DNS::RR::HIP(3)
2
3
4
6 Net::DNS::RR::HIP - DNS HIP resource record
7
9 use Net::DNS;
10 $rr = Net::DNS::RR->new('name IN HIP algorithm hit key servers');
11
13 Class for DNS Host Identity Protocol (HIP) resource records.
14
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 algorithm
24 $algorithm = $rr->algorithm;
25 $rr->algorithm( $algorithm );
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 key
44 $key = $rr->key;
45 $rr->key( $key );
46
47 The hexadecimal representation of the public key.
48
49 keybin
50 $keybin = $rr->keybin;
51 $rr->keybin( $keybin );
52
53 The binary representation of the public key.
54
55 servers
56 @servers = $rr->servers;
57
58 Optional list of domain names of rendezvous servers.
59
61 Copyright (c)2009 Olaf Kolkman, NLnet Labs
62
63 All rights reserved.
64
65 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
66
68 Permission to use, copy, modify, and distribute this software and its
69 documentation for any purpose and without fee is hereby granted,
70 provided that the original copyright notices appear in all copies and
71 that both copyright notice and this permission notice appear in
72 supporting documentation, and that the name of the author not be used
73 in advertising or publicity pertaining to distribution of the software
74 without specific prior written permission.
75
76 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
77 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
78 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
79 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
80 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
81 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
82 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
83
85 perl, Net::DNS, Net::DNS::RR, RFC8005
86
87
88
89perl v5.36.0 2022-07-22 Net::DNS::RR::HIP(3)