Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.BuildChain

TElCustomCertStorage     See also     


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


Builds the certificate chain by its index.

Declaration

[VB.NET]
    Function BuildChain(ByVal Certificate As TElX509Certificate) As TElX509CertificateChain
    Function BuildChain(ByVal ChainIndex As Integer) As TElX509CertificateChain

[Pascal]
    function BuildChain(ChainIndex: integer): TElX509CertificateChain;

[PHP]
    TElX509CertificateChain BuildChain(TElX509Certificate $Certificate)
    TElX509CertificateChain BuildChain(integer $ChainIndex)

[Java]
    TElX509CertificateChain buildChain(TElX509Certificate Certificate, boolean Clone);
    TElX509CertificateChain buildChain(int ChainIndex);
    TElX509CertificateChain buildChain(int ChainIndex, boolean Clone);
    TElX509CertificateChain buildChain(TElX509Certificate Certificate);

Parameters

  • ChainIndex - index of the certificate chain to build.
  • Certificate - ...
  • Clone -

Description

    Use this function to build the certificate chain by its index. The first certificate in the chain is the one specified by Chains[ChainIndex], the following is its CA (if the certificate is not self-signed) and so on, until the chain is not completed.

See also:     Chains     TElX509CertificateChain    

Discuss this help topic in SecureBlackbox Forum