Uses of Class
net.i2p.crypto.eddsa.math.Field
Package | Description |
---|---|
net.i2p.crypto.eddsa.math |
Data structures that definie curves and fields, and
the mathematical operaions on them.
|
net.i2p.crypto.eddsa.math.bigint |
Low-level, non-optimized implementation using BigIntegers for any curve.
|
net.i2p.crypto.eddsa.math.ed25519 |
Low-level, optimized implementation using Radix $2^{51}$ for Curve 25519.
|
-
Uses of Field in net.i2p.crypto.eddsa.math
Fields in net.i2p.crypto.eddsa.math declared as Field Modifier and Type Field Description protected Field
Encoding. f
protected Field
FieldElement. f
Methods in net.i2p.crypto.eddsa.math that return Field Modifier and Type Method Description Field
Curve. getField()
Methods in net.i2p.crypto.eddsa.math with parameters of type Field Modifier and Type Method Description void
Encoding. setField(Field f)
Constructors in net.i2p.crypto.eddsa.math with parameters of type Field Constructor Description Curve(Field f, byte[] d, FieldElement I)
FieldElement(Field f)
-
Uses of Field in net.i2p.crypto.eddsa.math.bigint
Methods in net.i2p.crypto.eddsa.math.bigint with parameters of type Field Modifier and Type Method Description void
BigIntegerLittleEndianEncoding. setField(Field f)
Constructors in net.i2p.crypto.eddsa.math.bigint with parameters of type Field Constructor Description BigIntegerFieldElement(Field f, BigInteger bi)
BigIntegerScalarOps(Field f, BigInteger l)
-
Uses of Field in net.i2p.crypto.eddsa.math.ed25519
Constructors in net.i2p.crypto.eddsa.math.ed25519 with parameters of type Field Constructor Description Ed25519FieldElement(Field f, int[] t)
Creates a field element.