Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.UseSystemStorages

TElX509CertificateValidator     See also     


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


Specifies if system certificate stores must be used.

Declaration

[C#]
    bool UseSystemStorages;

[VB.NET]
    Property UseSystemStorages As Boolean

[Pascal]
    property UseSystemStorages : boolean;

[C++]
    bool get_UseSystemStorages();
    void set_UseSystemStorages(bool Value);

[PHP]
    bool get_UseSystemStorages()
    void set_UseSystemStorages(bool $Value)

[Java]
    boolean getUseSystemStorages();
    void setUseSystemStorages(boolean Value);

Description

    This property works on Windows and Mac OS X.
    On Windows, set this property to true to include Windows Certificate Stores when TElCertificateValidator is looking for the CA and root certificates, or when checking if the certificate is blocked or trusted. Note, that use of Windows stores slows down certificate validation because it takes time to check if certain certificate is in the store.
    On Mac OS X, the logic of this property is the same as on Windows.
    Set this property to false if you maintain your own certificate lists and don't want to spend extra time searching for certificaets in system stores.

See also:     InitializeWinStorages     InitializeAppleStorages    

Discuss this help topic in SecureBlackbox Forum