nn::ssl::CrlStore::UnRegisterCrl Member Function

Syntax

nn::Result UnRegisterCrl(
     CrlId certId
);

Arguments

Name Description
in certId ID of a registered CRL. Obtained by an argument in the RegisterCrl function.

Return Values

Returns the function's execution result. Returns one of the Result values listed below.
Value Description
ResultSuccess Process was successful.
ResultFailToCreateCrlStoreErr Error indicating that creation of the CRL store failed. The function returns this value when Initialize has not yet been called. When using this class, always run Initialize after instantiation. It may also be returned if the the total number of CRLs registered in the SSL library is already at the maximum allowed by the system, or in other similar situations. In some cases, subsequent attempts to run this function again may succeed if you either unregister CRLs that you have registered or wait a while and try again. (The latter approach will work if a CRL that was registered by another module is unregistered during the wait time).
ResultNotInitializedErr Error indicating that the library is not initialized. None of the functions in this library can be run without first running nn::ssl::Initialize.
A value other than the above. Unexpected error (see ssl_Result.h for error details).

Description

Unregisters a CRL.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL