Skip to content

parseCertificateRevocationListDer

Decodes a DER-encoded X.509 CRL into a structured ParsedCertificateRevocationList.

Returns a typed failure (code: 'malformed') on malformed input. For the throwing form use parseCertificateRevocationListDerOrThrow. Does not verify the signature — call verifyCertificateRevocationListSignature or validateCertificateRevocationList for that.

ts
function parseCertificateRevocationListDer(
	der: Uint8Array,
): ParseCertificateRevocationListResult

Parameters

  • der: Uint8Array

Released under the MIT License.