Discuss this help topic in SecureBlackbox Forum

TElServerSSLExtensions.StrictCertRequest

TElServerSSLExtensions     See also     


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


Specifies if the server should send the list of acceptable certification authorities to the client during client authentication.

Declaration

[C#]
    bool StrictCertRequest;

[VB.NET]
    Property StrictCertRequest As Boolean

[Pascal]
    property StrictCertRequest : boolean;

[C++]
    bool get_StrictCertRequest();
    void set_StrictCertRequest(bool Value);

[PHP]
    bool get_StrictCertRequest()
    void set_StrictCertRequest(bool $Value)

[Java]
    boolean getStrictCertRequest();
    void setStrictCertRequest(boolean Value);

Description

    If this property is set to true, the server will send the list of acceptable certification authorities (taken from ClientCertStorage certificate store) to the client. Thus, the client will be limited to use only certificates whose issuer fields are equal to subject fields of certificates contained in ClientCertStorage.

    The default value is false.

See also:     PSKIdentityHint    

Discuss this help topic in SecureBlackbox Forum