Uses of Interface java.security.spec.AlgorithmParameterSpec
Uses in package java.security
Methods with parameter type java.security.spec.AlgorithmParameterSpec
void
Initializes the engine with the specified
AlgorithmParameterSpec class.
void
Initializes the parameter generator with the specified
AlgorithmParameterSpec and SecureRandom classes.
void
Initialize the KeyPairGeneratorSpi with the specified
AlgorithmParameterSpec and source of randomness
This is a concrete method.
Uses in package java.security.spec
Classes implementing java.security.spec.AlgorithmParameterSpec
class
DSA Parameter class Specification.
class
This class generates a set of RSA Key parameters used in the generation
of RSA keys.
Uses in package javax.crypto.spec
Classes implementing java.security.spec.AlgorithmParameterSpec
class
This class represents the parameters needed for generating
Diffie-Hellman parameters.
class
The base set of parameters necessary to perform Diffie-Hellman key
exchange.
class
A wrapper for an initialization vector.
class
A wrapper for parameters for the
RC2
block cipher ("RC" means either "Rivest Cipher" or "Ron's Code",
depending upon who you ask and when).
class
A wrapper for parameters to the
RC5
block cipher.
Uses in package javax.crypto
Methods with parameter type java.security.spec.AlgorithmParameterSpec
void
Initializes this cipher with an operation mode, key, parameters,
and source of randomness.
void
Initialize this mechanism with a key and parameters.
void
Initialize (or re-initialize) this instance.
void
Initialize this key agreement with a key, parameters, and source of
randomness.
void
Initialize this key generator with parameters and a source of
randomness.
void
Initialize this cipher with the supplied key and parameters.
The cipher will be initialized for encryption, decryption, key
wrapping, or key unwrapping, depending upon whether the
opmode
argument is
ENCRYPT_MODE
,
DECRYPT_MODE
,
WRAP_MODE
, or
UNWRAP_MODE
,
respectively.
If this cipher requires any random bytes (for example for an
initilization vector) then the
SecureRandom
with the highest priority is used as the source of these bytes.
A call to any of the
init
methods overrides the
state of the instance, and is equivalent to creating a new instance
and calling its
init
method.
void
Initialize this cipher with the supplied key, parameters, and
source of randomness.
The cipher will be initialized for encryption, decryption, key
wrapping, or key unwrapping, depending upon whether the
opmode
argument is
ENCRYPT_MODE
,
DECRYPT_MODE
,
WRAP_MODE
, or
UNWRAP_MODE
,
respectively.
A call to any of the
init
methods overrides the
state of the instance, and is equivalent to creating a new instance
and calling its
init
method.
void
Initialize this key agreement with a key and parameters.
void
Initialize this MAC with a key and parameters.
void
Initialize this key agreement with a key, parameters, and source of
randomness.
void
Initialize this key generator with a set of parameters; the
highest-priority
SecureRandom
implementation
will be used.
void
Initialize this key generator with a set of parameters and a source
of randomness.