SecureBlackbox

200+ components and classes for all aspects of digital security of your data

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


TElSSLServer.CipherSuites

TElSSLServer     See also     


 

Specifies the allowed cipher suites.

 

Declaration

[C#/Java]
    bool get_CipherSuites(short Index);
    void set_CipherSuites(short Index, bool Value);

[VB.NET]
    Property CipherSuites(ByVal Index As Short) As Boolean

[Pascal]
    property CipherSuites[Index: TSBCipherSuite]: boolean;

[C++]
    not implemented;

   

Parameters

  • Index (Suite) - The value that is to be enabled or disabled. See the list of values below
   

Values:


   

Description

    This property defines which cipher suites are allowed to be used during SSL/TLS session. By default cipher suites from SB_SUITE_RSA_RC4_MD5 to SB_SUITE_LAST are allowed. The application can disable undesired cipher suites.

   

See also:     Versions     CipherSuite    

 
Back to top