Discuss this help topic in SecureBlackbox Forum

TElSSLServer.ECCurves

TElSSLServer     See also     


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


Specifies which elliptic curves are enabled, and which are disabled.

Declaration

[C#]
    bool ECCurves[int Index];

[VB.NET]
    Property ECCurves(ByVal Index As Integer) As Boolean

[Pascal]
    property ECCurves[Index: integer]: boolean;

[C++]
    bool get_ECCurves(int32_t Index);
    void set_ECCurves(int32_t Index, bool Enabled);

[PHP]
    bool get_ECCurves(integer $Index)
    void set_ECCurves(integer $Index, bool $Enabled)

[Java]
    void setECCurves(int Index, boolean Enabled);

Parameters

  • Index - corresponds to one of the curves described below.
  • Enabled - allows to enable or disable the specified curve.

Possible curves:

Description

For each elliptic curve, this property returns true if the curve is enabled, and false if the curve is disabled.

See also:     ECCurveType    

Discuss this help topic in SecureBlackbox Forum