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::RR";
10
12 Class for DNS Certificate (CERT) resource records. (see RFC 2538)
13
15 format
16
17 print "format = ", $rr->format, "\n";
18
19 Returns the format code for the certificate (in numeric form)
20
21 tag
22
23 print "tag = ", $rr->tag, "\n";
24
25 Returns the key tag for the public key in the certificate
26
27 algorithm
28
29 print "algorithm = ", $rr->algorithm, "\n";
30
31 Returns the algorithm used by the certificate (in numeric form)
32
33 certificate
34
35 print "certificate = ", $rr->certificate, "\n";
36
37 Returns the data comprising the certificate itself (in raw binary form)
38
40 Copyright (c) 1997-2002 Michael Fuhr.
41
42 Portions Copyright (c) 2002-2004 Chris Reinhardt.
43
44 All rights reserved. This program is free software; you may redisā
45 tribute it and/or modify it under the same terms as Perl itself.
46
48 perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet,
49 Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC 2782
50
51
52
53perl v5.8.8 2007-08-01 Net::DNS::RR::CERT(3)