Discuss this help topic in SecureBlackbox Forum

TElCertificateRevocationList.Validate

TElCertificateRevocationList     


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


Checks validity of the CRL signature.

Declaration

[C#]
    int Validate(TElX509Certificate Certificate);

[VB.NET]
    Function Validate(ByVal Certificate As TElX509Certificate) As Integer

[Pascal]
    function Validate(Certificate : TElX509Certificate) : integer;

[C++]
    int32_t Validate(TElX509Certificate &Certificate);
    int32_t Validate(TElX509Certificate *Certificate);

[PHP]
    integer Validate(TElX509Certificate $Certificate)

[Java]
    int validate(TElX509Certificate Certificate);

Parameters

  • Certificate - certificate for validation CRL signature

Return value

    0 if certificates were successfully validated or rejected.     SB_CRL error code otherwise.

CRL Error codes

Description

    Use this method to check CRL integrity. Check is done by claculating the signature and comparing it with the signature contained in the CRL.

Discuss this help topic in SecureBlackbox Forum