Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.AddKnownCRLs

TElX509CertificateValidator     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Adds the storage with CRLs to the list of known CRLs.

Declaration

[C#]
    void AddKnownCRLs(TElCustomCRLStorage Storage);

[VB.NET]
    Sub AddKnownCRLs(ByVal Storage As TElCustomCRLStorage)

[Pascal]
    procedure AddKnownCRLs(Storage : TElCustomCertStorage);

[C++]
    void AddKnownCRLs(TElCustomCRLStorage &Storage);
    void AddKnownCRLs(TElCustomCRLStorage *Storage);

[PHP]
    void AddKnownCRLs(TElCustomCRLStorage $Storage)

[Java]
    void addKnownCRLs(TElCustomCRLStorage Storage);

Parameters

  • Storage - the storage to be added

Description

    Use this method to add the storage with CRLs to the list of known CRLs. This list is used to locate the CRLs before they are requested from the remote location. You can treat this list as a CRL cache: if the CRL is found in the list of known CRLs, and the CRL is valid, then it is not downloaded from remote location.

See also:     CheckCRL     ClearKnownCRLs    

Discuss this help topic in SecureBlackbox Forum