public class

ECCurveType

extends Object
java.lang.Object
   ↳ org.bouncycastle.crypto.tls.ECCurveType

Class Overview

RFC 4492 5.4

Summary

Constants
short explicit_char2 Indicates the elliptic curve domain parameters are conveyed verbosely, and the underlying finite field is a characteristic-2 field.
short explicit_prime Indicates the elliptic curve domain parameters are conveyed verbosely, and the underlying finite field is a prime field.
short named_curve Indicates that a named curve is used.
Public Constructors
ECCurveType()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final short explicit_char2

Indicates the elliptic curve domain parameters are conveyed verbosely, and the underlying finite field is a characteristic-2 field.

Constant Value: 2 (0x00000002)

public static final short explicit_prime

Indicates the elliptic curve domain parameters are conveyed verbosely, and the underlying finite field is a prime field.

Constant Value: 1 (0x00000001)

public static final short named_curve

Indicates that a named curve is used. This option SHOULD be used when applicable.

Constant Value: 3 (0x00000003)

Public Constructors

public ECCurveType ()