SecureBlackbox

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

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


TElSSLClient.CipherSuitePriorities

TElSSLClient     See also     


 

Specifies cipher suite priorities.

 

Declaration

[C#/Java]
    int get_CipherSuitePriorities(short Index);
    void set_CipherSuitePriorities(short Index, int Value);

[VB.NET]
    Property CipherSuitePriorities(ByVal Index As Short) As Integer

[Pascal]
    property CipherSuitePriorities[Index: TSBCipherSuite]: integer;

[C++]
    not implemented;

   

Parameters

  • Index - a desired cipher. See the list of ciphers below.
  • Value - desired priority value
   

Values:


   

Description

    Use this property to specify priority values for particular algorithms. The algorithm with higher priority value is considered more preferred.

   

See also:     CipherSuite     CipherSuites    

 
Back to top