Discuss this help topic in SecureBlackbox Forum

TElOCSPResponse.FindResponse

TElOCSPResponse     See also     


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


Looks for the desired OCSP response in the list.

Declaration

[C#]
    int FindResponse(TElX509Certificate Cert, TElX509Certificate Issuer);
    int FindResponse(TElPKCS7Issuer Signer, TElX509Certificate Issuer);

[VB.NET]
    Function FindResponse(ByVal Cert As TElX509Certificate, ByVal Issuer As TElX509Certificate) As Integer
    Function FindResponse(ByVal Signer As TElPKCS7Issuer, ByVal Issuer As TElX509Certificate) As Integer

[Pascal]
    function FindResponse(Cert : TElX509Certificate; Issuer : TElX509Certificate = nil) : integer;
    function FindResponse(Signer : TElX509Certificate; Issuer : TElX509Certificate = nil) : integer;

[C++]
    int32_t FindResponse(TElX509Certificate &Cert, TElX509Certificate &Issuer);
    int32_t FindResponse(TElX509Certificate *Cert, TElX509Certificate *Issuer);
    int32_t FindResponse(TElPKCS7Issuer &Signer, TElX509Certificate &Issuer);
    int32_t FindResponse(TElPKCS7Issuer *Signer, TElX509Certificate *Issuer);

[PHP]
    integer FindResponse(TElX509Certificate $Cert, TElX509Certificate $Issuer)
    integer FindResponse(TElPKCS7Issuer $Signer, TElX509Certificate $Issuer)

[Java]
    int findResponse(TElX509Certificate Cert, TElX509Certificate Issuer);
    int findResponse(TElPKCS7Issuer Signer, TElX509Certificate Issuer);

Parameters

  • Cert - the X.509 certificate, responce to the request on which should be found
  • Signer - the signer, responce to the request on whom should be found
  • Issuer - the certificate's issuer

Return value

    Index of the element being searched, or -1 if it is missing.

Description

    Use this method to find the OCSP response in the list.

See also:     Responses    

Discuss this help topic in SecureBlackbox Forum