SecureBlackbox Lite 2020 Kotlin Edition

Questions / Feedback?

CRL Type

Represents a Certificate Revocation List.

Remarks

CRLs store information about revoked certificates, i.e., certificates that have been identified as invalid by their issuing certificate authority (CA) for any number of reasons.

Each CRL object lists certificates from a single CA and identifies them by their serial numbers. A CA may or may not publish a CRL, may publish several CRLs, or may publish the same CRL in multiple locations.

Unlike OCSP responses, CRLs only list certificates that have been revoked. They do not list certificates that are still valid.

Fields

Bytes
ByteArray?

Returns raw CRL data in DER format.

CAKeyID
ByteArray?

A unique identifier (fingerprint) of the CA certificate's private key, if present in the CRL.

EntryCount
Int

Returns the number of certificate status entries in the CRL.

Issuer
String?

The common name of the CRL issuer (CA), typically a company name.

IssuerRDN
String?

A collection of information, in the form of [OID, Value] pairs, uniquely identifying the CRL issuer.

Location
String?

The URL that the CRL was downloaded from.

NextUpdate
String?

The planned time and date of the next version of this CRL to be published.

SigAlgorithm
String?

The public key algorithm that was used by the CA to sign this CRL.

TBS
ByteArray?

The to-be-signed part of the CRL (the CRL without the signature part).

ThisUpdate
String?

The date and time at which this version of the CRL was published.

Constructors

public constructor(bytes: ByteArray?, startIndex: Int, count: Int)

Creates a CRL object from a memory buffer. Bytes is a buffer containing raw (DER) CRL data, StartIndex and Count specify the starting position and the length of the CRL data in the buffer, respectively.

public constructor(location: String?)

Creates a CRL object by downloading it from a remote location.

public constructor(stream: InputStream?)

Creates a CRL object from data contained in a stream.

public constructor()

Creates an empty CRL object.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox Lite 2020 Kotlin Edition - Version 20.0 [Build 8063]