Package net.i2p.crypto.eddsa.spec
Class EdDSAParameterSpec
- java.lang.Object
-
- net.i2p.crypto.eddsa.spec.EdDSAParameterSpec
-
- All Implemented Interfaces:
Serializable
,AlgorithmParameterSpec
- Direct Known Subclasses:
EdDSANamedCurveSpec
public class EdDSAParameterSpec extends Object implements AlgorithmParameterSpec, Serializable
Parameter specification for an EdDSA algorithm.- Since:
- 0.9.15
- Author:
- str4d
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EdDSAParameterSpec(Curve curve, String hashAlgo, ScalarOps sc, GroupElement B)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
GroupElement
getB()
Curve
getCurve()
String
getHashAlgorithm()
ScalarOps
getScalarOps()
int
hashCode()
-
-
-
Constructor Detail
-
EdDSAParameterSpec
public EdDSAParameterSpec(Curve curve, String hashAlgo, ScalarOps sc, GroupElement B)
- Parameters:
curve
- the curvehashAlgo
- the JCA string for the hash algorithmsc
- the parameter L represented as ScalarOpsB
- the parameter B- Throws:
IllegalArgumentException
- if hash algorithm is unsupported or length is wrong
-
-
Method Detail
-
getCurve
public Curve getCurve()
-
getHashAlgorithm
public String getHashAlgorithm()
-
getScalarOps
public ScalarOps getScalarOps()
-
getB
public GroupElement getB()
- Returns:
- the base (generator)
-
-