Class ECPrivateKeySpec
java.lang.Object
java.security.spec.ECPrivateKeySpec
- All Implemented Interfaces:
- KeySpec
- 
Constructor SummaryConstructorsConstructorDescriptionECPrivateKeySpec(BigInteger s, ECParameterSpec params) Creates a new ECPrivateKeySpec with the specified parameter values.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the associated elliptic curve domain parameters.getS()Returns the private value S.
- 
Constructor Details- 
ECPrivateKeySpecCreates a new ECPrivateKeySpec with the specified parameter values.- Parameters:
- s- the private value.
- params- the associated elliptic curve domain parameters.
- Throws:
- NullPointerException- if- sor- paramsis null.
 
 
- 
- 
Method Details- 
getS
- 
getParamsReturns the associated elliptic curve domain parameters.- Returns:
- the EC domain parameters.
 
 
-