1Net::DNS::RR::CERT(3) User Contributed Perl DocumentationNet::DNS::RR::CERT(3)
2
3
4

NAME

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

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR('name IN CERT certtype keytag algorithm cert');
11

DESCRIPTION

13       Class for DNS Certificate (CERT) 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   certtype
24           $certtype = $rr->certtype;
25
26       Returns the certtype code for the certificate (in numeric form).
27
28   keytag
29           $keytag = $rr->keytag;
30           $rr->keytag( $keytag );
31
32       Returns the key tag for the public key in the certificate
33
34   algorithm
35           $algorithm = $rr->algorithm;
36
37       Returns the algorithm used by the certificate (in numeric form).
38
39   certificate
40   certbin
41           $certbin = $rr->certbin;
42           $rr->certbin( $certbin );
43
44       Binary representation of the certificate.
45
46   cert
47           $cert = $rr->cert;
48           $rr->cert( $cert );
49
50       Base64 representation of the certificate.
51
53       Copyright (c)2002 VeriSign, Mike Schiraldi
54
55       All rights reserved.
56
57       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
58

LICENSE

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

SEE ALSO

77       perl, Net::DNS, Net::DNS::RR, RFC4398
78
79
80
81perl v5.26.3                      2018-02-09             Net::DNS::RR::CERT(3)
Impressum