Discuss this help topic in SecureBlackbox Forum

TElOCSPSingleResponse.CertMatches

TElOCSPSingleResponse     See also     


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


Matches the certificate to the issuer.

Declaration

[C#]
    bool CertMatches(TElX509Certificate Cert, TElX509Certificate Issuer);

[VB.NET]
    Function CertMatches(ByVal Cert As TElX509Certificate, ByVal Issuer As TElX509Certificate) As Boolean

[Pascal]
    function CertMatches(Cert : TElX509Certificate; Issuer : TElX509Certificate = nil) : boolaen;

[C++]
    bool CertMatches(TElX509Certificate &Cert, TElX509Certificate &Issuer);
    bool CertMatches(TElX509Certificate *Cert, TElX509Certificate *Issuer);

[PHP]
    bool CertMatches(TElX509Certificate $Cert, TElX509Certificate $Issuer)

[Java]
    boolean certMatches(TElX509Certificate Cert, TElX509Certificate Issuer);

Parameters

  • Cert - the certificate to be matched
  • Issuer - the certificate's issuer

Return value

    Returns True if the certificate matches the issuer, and False otherwise.

Description

    Use this method to match the certificate to the issuer.

See also:     SignerMatches    

Discuss this help topic in SecureBlackbox Forum