Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.GetIssuerCertificate

TElCustomCertStorage     See also     


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


Returns the certificate which was used to sign the existing certificate, if such signing certificate is present in storage

Declaration

[C#]
    int GetIssuerCertificate(TElX509Certificate Certificate);

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

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

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

[PHP]
    integer GetIssuerCertificate(TElX509Certificate $Certificate)

[Java]
    int getIssuerCertificate(TElX509Certificate Certificate);

Parameters

  • Certificate - The TElX509Certificate object which contains the subject certificate

Return value

    Index of the certificate in the list.

Description

    Use this method to find the certificate which was used to sign the certificate specified by Certificate parameter.
    If issuer certificate exists is storage, its index is returned. Otherwise, this method returns -1.

See also:     FindByHash    

Discuss this help topic in SecureBlackbox Forum