GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Crypt::Perl::X509::Extensions(3) User Contributed Perl Documentation Crypt::Perl::X509::Extensions(3)

Crypt::Perl::X509::Extensions - extensions list for X.509 certificates

    #Each object passed should be an instance of a subclass of
    #Crypt::Perl::X509::Extension
    my $exreq = Crypt::Perl::X509::Extensions->new( @EXTN_OBJS );

    #...or:

    my $exreq = Crypt::Perl::X509::Extensions->new(
        [ $extn_type1 => @args1 ],
        [ $extn_type2 => @args2 ],
    );

    #...for example:

    my $exreq = Crypt::Perl::X509::Extensions->new(
        [ 'subjectAltName',
            [ dNSName => 'foo.com' ],
            [ dNSName => 'haha.tld' ],
        ],
    );

Instances of this class represent the list of extensions in an X.509 (SSL) certificate.

You probably don’t need to instantiate this class directly; instead, you can instantiate it implicitly by listing out arguments to Crypt::Perl::X509v3’s constructor. See that module’s SYNOPSIS for an example.

Look in the Crypt::Perl distribution’s "Crypt::Perl::X509::Extension" namespace for supported extensions.

2020-03-06 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.