Uses of Class
java.security.spec.NamedParameterSpec
Packages that use NamedParameterSpec
Package
Description
Provides interfaces for generating RSA (Rivest, Shamir and
Adleman AsymmetricCipher algorithm)
keys as defined in the RSA Laboratory Technical Note
PKCS#1, and DSA (Digital Signature
Algorithm) keys as defined in NIST's FIPS-186.
Provides classes and interfaces for key specifications and algorithm
parameter specifications.
-
Uses of NamedParameterSpec in java.security.interfaces
Methods in java.security.interfaces that return NamedParameterSpecModifier and TypeMethodDescriptionEdECKey.getParams()
Returns the algorithm parameters associated with the key.default NamedParameterSpec
EdECPrivateKey.getParams()
Returns the parameters associated with this key.default NamedParameterSpec
EdECPublicKey.getParams()
Returns the parameters associated with this key. -
Uses of NamedParameterSpec in java.security.spec
Subclasses of NamedParameterSpec in java.security.specModifier and TypeClassDescriptionclass
This immutable class specifies the set of parameters used for generating elliptic curve (EC) domain parameters.Fields in java.security.spec declared as NamedParameterSpecModifier and TypeFieldDescriptionstatic final NamedParameterSpec
NamedParameterSpec.ED25519
The Ed25519 parametersstatic final NamedParameterSpec
NamedParameterSpec.ED448
The Ed448 parametersstatic final NamedParameterSpec
NamedParameterSpec.X25519
The X25519 parametersstatic final NamedParameterSpec
NamedParameterSpec.X448
The X448 parametersMethods in java.security.spec that return NamedParameterSpecModifier and TypeMethodDescriptionEdECPrivateKeySpec.getParams()
Get the algorithm parameters that define the curve and other settings.EdECPublicKeySpec.getParams()
Get the algorithm parameters that define the curve and other settings.Constructors in java.security.spec with parameters of type NamedParameterSpecModifierConstructorDescriptionEdECPrivateKeySpec
(NamedParameterSpec params, byte[] bytes) Construct a private key spec using the supplied parameters and bit string.EdECPublicKeySpec
(NamedParameterSpec params, EdECPoint point) Construct a public key spec using the supplied parameters and point.