Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.AddTrustedCertificates

TElX509CertificateValidator     See also     


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


Adds the storage with certificates to the list of trusted certificates.

Declaration

[C#]
    void AddTrustedCertificates(TElCustomCertStorage Storage);

[VB.NET]
    Sub AddTrustedCertificates(ByVal Storage As TElCustomCertStorage)

[Pascal]
    procedure AddTrustedCertificates(Storage : TElCustomCertStorage);

[C++]
    void AddTrustedCertificates(TElCustomCertStorage &Storage);
    void AddTrustedCertificates(TElCustomCertStorage *Storage);

[PHP]
    void AddTrustedCertificates(TElCustomCertStorage $Storage)

[Java]
    void addTrustedCertificates(TElCustomCertStorage Storage);

Parameters

  • Storage - the storage with trusted certificates.

Description

    Use this method to add a storage with certificates to the list of trusted certificates. Such certificates, when found in the chain, will be explicitly treated as valid and signature, key usage, CRL and OCSP checks will not be performed on them (validity period check is performed only if CheckValidityPeriodForTrusted property is set to true). Note: the storage object is added to the list, not copied.

Discuss this help topic in SecureBlackbox Forum