Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::dns::rr::cert5.18(3) [mojave man page]

Net::DNS::RR::CERT(3)					User Contributed Perl Documentation				     Net::DNS::RR::CERT(3)

NAME
Net::DNS::RR::CERT - DNS CERT resource record SYNOPSIS
use Net::DNS; $rr = new Net::DNS::RR('name IN CERT format tag algorithm cert'); DESCRIPTION
Class for DNS Certificate (CERT) resource records. METHODS
The available methods are those inherited from the base class augmented by the type-specific methods defined in this package. Use of undocumented package features or direct access to internal data structures is discouraged and could result in program termination or other unpredictable behaviour. format $format = $rr->format; Returns the format code for the certificate (in numeric form) tag $tag = $rr->tag; $rr->tag( $tag ); Returns the key tag for the public key in the certificate algorithm $algorithm = $rr->algorithm; Returns the algorithm used by the certificate (in numeric form). cert $cert = $rr->cert; $rr->cert( $cert ); Base64 representation of the certificate. certbin $certbin = $rr->certbin; $rr->certbin( $certbin ); Binary representation of the certificate. COPYRIGHT
Copyright (c)2002 VeriSign, Mike Schiraldi All rights reserved. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. Package template (c)2009,2012 O.M.Kolkman and R.W.Franks. SEE ALSO
perl, Net::DNS, Net::DNS::RR, RFC4398 perl v5.18.2 2014-01-16 Net::DNS::RR::CERT(3)

Check Out this Related Man Page

Net::DNS::RR::CAA(3)					User Contributed Perl Documentation				      Net::DNS::RR::CAA(3)

NAME
Net::DNS::RR::CAA - DNS CAA resource record SYNOPSIS
use Net::DNS; $rr = new Net::DNS::RR('name IN CAA flags tag value'); DESCRIPTION
Class for Certification Authority Authorization (CAA) DNS resource records. METHODS
The available methods are those inherited from the base class augmented by the type-specific methods defined in this package. Use of undocumented package features or direct access to internal data structures is discouraged and could result in program termination or other unpredictable behaviour. tag $tag = $rr->tag; $rr->tag( $tag ); The property identifier, a sequence of ASCII characters. Tag values may contain ASCII characters a-z, A-Z, and 0-9. Tag values should not contain any other characters. Matching of tag values is not case sensitive. value $value = $rr->value; $rr->value( $value ); A sequence of octets representing the property value. Property values are encoded as binary values and may employ sub-formats. flags $flags = $rr->flags; $rr->flags( $flags ); Unsigned 8-bit number representing Boolean flags. critical $rr->critical(0); $rr->critical(1); if ( $rr->critical ) { ... } Issuer critical flag. COPYRIGHT
Copyright (c)2013 Dick Franks All rights reserved. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. Package template (c)2009,2012 O.M.Kolkman and R.W.Franks. SEE ALSO
perl, Net::DNS, Net::DNS::RR, RFC6844 perl v5.18.2 2014-01-16 Net::DNS::RR::CAA(3)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Vulnerability Alerts

Aside from CERT, are there any additional sources for unix/linux vulnerabilities? (1 Reply)
Discussion started by: kmgrady01
1 Replies

2. News, Links, Events and Announcements

Recently Announced TCP Vulnerability

Here are a couple of documents that discuss the issue. CERT Alert IETF Draft (0 Replies)
Discussion started by: Perderabo
0 Replies

3. What is on Your Mind?

DNS killing me

Does anyone here know DNS backwords and forwards to include knowing how to set it up for internal and external users (private and public ip addresses)??? Any help would be great! (1 Reply)
Discussion started by: nbredthauer
1 Replies

4. Shell Programming and Scripting

To extract the required lines from a file

I have a files in a directory in this format data data data ---BEGIN CERT----- data data data ---END CERT ----- Now, I want to extract the lines starting from --BEGIN CERT-- and write the contents till the end of file into a new file.How can I do this for all the files in the... (1 Reply)
Discussion started by: sureshg
1 Replies