Package org.bouncycastle.jcajce.spec
Class ECGOST3410PublicKeySpec
- java.lang.Object
-
- org.bouncycastle.jcajce.spec.ECGOST3410PublicKeySpec
-
- All Implemented Interfaces:
java.security.spec.KeySpec
public class ECGOST3410PublicKeySpec extends java.lang.Object implements java.security.spec.KeySpec
This class specifies a ECGOST3410-94 public key with its associated parameters.
-
-
Constructor Summary
Constructors Constructor Description ECGOST3410PublicKeySpec(java.security.spec.ECPoint w, GOST3410ParameterSpec<ECDomainParameterSpec> parameters)
Creates a new GOST3410PublicKeySpec with the specified parameter values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GOST3410ParameterSpec<ECDomainParameterSpec>
getParams()
java.security.spec.ECPoint
getW()
Returns the public pointw
.
-
-
-
Constructor Detail
-
ECGOST3410PublicKeySpec
public ECGOST3410PublicKeySpec(java.security.spec.ECPoint w, GOST3410ParameterSpec<ECDomainParameterSpec> parameters)
Creates a new GOST3410PublicKeySpec with the specified parameter values.- Parameters:
w
- the public key.
-
-
Method Detail
-
getW
public java.security.spec.ECPoint getW()
Returns the public pointw
.- Returns:
- the public point
w
.
-
getParams
public GOST3410ParameterSpec<ECDomainParameterSpec> getParams()
-
-