1Net::DNS::RR::ZONEMD(3)User Contributed Perl DocumentatioNnet::DNS::RR::ZONEMD(3)
2
3
4

NAME

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

SYNOPSIS

9           use Net::DNS;
10           $rr = Net::DNS::RR->new("example.com. ZONEMD 2018031500 1 1
11               FEBE3D4CE2EC2FFA4BA99D46CD69D6D29711E55217057BEE
12               7EB1A7B641A47BA7FED2DD5B97AE499FAFA4F22C6BD647DE");
13

DESCRIPTION

15       Class for DNS Zone Message Digest (ZONEMD) resource record.
16

METHODS

18       The available methods are those inherited from the base class augmented
19       by the type-specific methods defined in this package.
20
21       Use of undocumented package features or direct access to internal data
22       structures is discouraged and could result in program termination or
23       other unpredictable behaviour.
24
25   serial
26           $serial = $rr->serial;
27           $rr->serial( $serial );
28
29       Unsigned 32-bit integer zone serial number.
30
31   scheme
32           $scheme = $rr->scheme;
33           $rr->scheme( $scheme );
34
35       The scheme field is an 8-bit unsigned integer that identifies the
36       methods by which data is collated and presented as input to the hashing
37       function.
38
39   algorithm
40           $algorithm = $rr->algorithm;
41           $rr->algorithm( $algorithm );
42
43       The algorithm field is an 8-bit unsigned integer that identifies the
44       cryptographic hash algorithm used to construct the digest.
45
46   digest
47           $digest = $rr->digest;
48           $rr->digest( $digest );
49
50       Hexadecimal representation of the digest over the zone content.
51
52   digestbin
53           $digestbin = $rr->digestbin;
54           $rr->digestbin( $digestbin );
55
56       Binary representation of the digest over the zone content.
57
59       Copyright (c)2019 Dick Franks.
60
61       All rights reserved.
62
63       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
64

LICENSE

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

SEE ALSO

83       perl, Net::DNS, Net::DNS::RR, RFC8976
84
85
86
87perl v5.34.1                      2022-06-08           Net::DNS::RR::ZONEMD(3)
Impressum