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 = new Net::DNS::RR('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 pkalgorithm
24 $pkalgorithm = $rr->pkalgorithm;
25
26 The PK algorithm field indicates the public key cryptographic algorithm
27 and the implied public key field format. The values are those defined
28 for the IPSECKEY algorithm type [RFC4025].
29
30 hit
31 $hit = $rr->hit;
32
33 The hexadecimal representation of the host identity tag.
34
35 hitbin
36 $hitbin = $rr->hitbin;
37
38 The binary representation of the host identity tag.
39
40 key
41 $key = $rr->key;
42
43 The hexadecimal representation of the public key.
44
45 keybin
46 $keybin = $rr->keybin;
47
48 The binary representation of the public key.
49
50 servers
51 @servers = $rr->servers;
52
53 Optional list of domain names of rendezvous servers.
54
56 Copyright (c)2009 Olaf Kolkman, NLnet Labs
57
58 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
59
60 All rights reserved.
61
62 This program is free software; you may redistribute it and/or modify it
63 under the same terms as Perl itself.
64
66 perl, Net::DNS, Net::DNS::RR, RFC5205
67
68
69
70perl v5.16.3 2012-12-28 Net::DNS::RR::HIP(3)