nn::ssl::CrlStore::RegisterCrl Member Function

Syntax

nn::Result RegisterCrl(
     const u8 * pCrlData,
     size_t crlDatasize,
     CrlId * pCrlIdCourier = NULL
);

Arguments

Name Description
in pCrlData CRL data. The data format is X.509 v2 CRL data (ASN.1 definition) that has been DER-encoded to binary data.
in crlDatasize Size of pCrlData.
out pCrlIdCourier Used when unregistering a specific individual certificate by its registered CRL ID (using the UnRegisterCrl function). If this argument is not needed (such as when there is no need to unregister individual CRLs; releasing a CrlStore object unregisters all of its CRLs at once), this can be left unspecified.

Return Values

Returns the result of the operation.

Description

Registers a CRL. Call this function multiple times to register multiple CRLs.


CONFIDENTIAL