パッケージ | 説明 |
---|---|
net.i2p.crypto.eddsa.math |
Data structures that definie curves and fields, and
the mathematical operaions on them.
|
修飾子とタイプ | フィールド | 説明 |
---|---|---|
(package private) GroupElement.Representation |
GroupElement.repr |
Variable is package private only so that tests run.
|
修飾子とタイプ | メソッド | 説明 |
---|---|---|
GroupElement.Representation |
GroupElement.getRepresentation() |
Gets the representation of the group element.
|
static GroupElement.Representation |
GroupElement.Representation.valueOf(java.lang.String name) |
指定した名前を持つこの型の列挙型定数を返します。
文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に
一致している必要があります。(余分な空白文字を含めることは
できません。)
|
static GroupElement.Representation[] |
GroupElement.Representation.values() |
この列挙型の定数を含む配列を宣言されている順序で返します。
このメソッドは次のようにして定数を反復するために
使用できます:
for (GroupElement.Representation c : GroupElement.Representation.values()) System.out.println(c); |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
GroupElement |
Curve.getZero(GroupElement.Representation repr) |
コンストラクタ | 説明 |
---|---|
GroupElement(Curve curve,
GroupElement.Representation repr,
FieldElement X,
FieldElement Y,
FieldElement Z,
FieldElement T) |
Creates a group element for a curve.
|