The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

EJBCA::CrlPublish::CrlInfo

SYNOPSIS

Retrives details from a CRL file and presents them as accessor methods.

Calls the openssl binary and parses the output to get its job done.

CONSTRUCTOR

EJBCA::CrlPublish::CrlInfo->new( $crlFile )

Argument must be a path to a plain, readable CRL file in DER or PEM format.

Returns a blessed, populated object reference, or undef on failure.

ACCESSOR METHODS

$self->crlFile

Returns the CRL filename supplied to the constructor.

$self->crlFormat

Returns 'PEM' or 'DER'.

$self->crlNumber

Returns the integer crlNumber from the CRL.

$self->issuerDn

Returns the CRL issuer distinguished name.

$self->issuingFile

Returns the file portion of the issuing distribution point URL.

$self->issuingPath

Returns the path portion of the issuing distribution point URL.

$self->issuingHost

Returns the host portion of the issuing distribution point URL.

$self->issuingUrl

Returns the entire issuing distribution point URL.

AUTHOR

Kevin Cody-Little <kcody@cpan.org>