Discuss this help topic in SecureBlackbox Forum

TElOCSPSingleResponse.SignerMatches

TElOCSPSingleResponse     See also     


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


Matches the signer to the issuer.

Declaration

[C#]
    bool SignerMatches(TElPKCS7Issuer Signer, TElX509Certificate Issuer);

[VB.NET]
    Function SignerMatches(ByVal Signer As TElPKCS7Issuer, ByVal Issuer As TElX509Certificate) As Boolean

[Pascal]
    function SignerMatches(Signer : TElPKCS7Issuer; Issuer : TElX509Certificate = nil) : boolean;

[C++]
    bool SignerMatches(TElPKCS7Issuer &Signer, TElX509Certificate &Issuer);
    bool SignerMatches(TElPKCS7Issuer *Signer, TElX509Certificate *Issuer);

[PHP]
    bool SignerMatches(TElPKCS7Issuer $Signer, TElX509Certificate $Issuer)

[Java]
    boolean signerMatches(TElPKCS7Issuer Signer, TElX509Certificate Issuer);

Parameters

  • Signer - the certificate's signer
  • Issuer - the certificate's issuer

Return value

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

Description

    Use this method to match the certificate signer to the issuer.

See also:     CertMatches    

Discuss this help topic in SecureBlackbox Forum