Interface IEcKeyPairGenerationSpec
- All Superinterfaces:
IKeyPairGenerationSpec, Serializable
Interface for EC key pair generation specifications. This interface defines the specifications for generating EC
keys, including the key size or curve name.
- Since:
- 8.5.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionReturns the curve name for the EC key pair generation.intReturns the key size for the EC key pair generation.Methods inherited from interface IKeyPairGenerationSpec
getAlgorithm, getSignatureType
-
Method Details
-
getKeySize
int getKeySize()Returns the key size for the EC key pair generation.- Returns:
- The key size for the EC key pair generation.
-
getCurveName
String getCurveName()Returns the curve name for the EC key pair generation. If the curve name is not specified, a curve is selected based on the key size.- Returns:
- The curve name for the EC key pair generation.
-