Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.StrictMode

TElX509Certificate     


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


This property specifies whether exception is raised if the certificate insignificant violations of the standard

Declaration

[C#]
    bool StrictMode;

[VB.NET]
    Property StrictMode As Boolean

[Pascal]
    property StrictMode : boolean;

[C++]
    bool get_StrictMode();
    void set_StrictMode(bool Value);

[PHP]
    bool get_StrictMode()
    void set_StrictMode(bool $Value)

[Java]
    boolean getStrictMode();
    void setStrictMode(boolean Value);

Description

    If StrictMode is set to False, TElX509Certificate will not raise an exception for certificates that contains insignificant violations of the standard (such as incorrect Critical field in certificate extensions).
    We recommend to set this property to False in most cases, as a lot of CA's produce certificates that are not 100%-conformant to a standard.

Discuss this help topic in SecureBlackbox Forum