1Net::DNS::RR::CERT(3) User Contributed Perl DocumentationNet::DNS::RR::CERT(3)
2
3
4
6 Net::DNS::RR::CERT - DNS CERT resource record
7
9 use Net::DNS;
10 $rr = Net::DNS::RR->new('name IN CERT certtype keytag algorithm cert');
11
13 Class for DNS Certificate (CERT) 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 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
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 original copyright notices appear in all copies and
63 that both 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
77 perl Net::DNS Net::DNS::RR RFC4398
78 <https://tools.ietf.org/html/rfc4398>
79
80 Algorithm Numbers <http://www.iana.org/assignments/dns-sec-alg-numbers>
81
82
83
84perl v5.36.1 2023-06-01 Net::DNS::RR::CERT(3)