GNU Classpath (0.20) | |
Frames | No Frames |
Methods with parameter type java.security.SecureRandom | |
void | SSLContextSpi.engineInit(KeyManager[] keyManagers, TrustManager[] trustManagers, SecureRandom random) Initialize this context with key and trust managers, and a source
of randomness. |
void | Initializes this context and prepares it for producing socket
factories. |
Methods with parameter type java.security.SecureRandom | |
void | Initializes the key generator to a give modulus. |
void | Initializes the key generator with the specified DSA parameters and
random bit source
|
Methods with parameter type java.security.SecureRandom | |
void | Initializes this cipher with an operation mode, key, parameters,
and source of randomness. |
void | Initializes this cipher with an operation mode, key, and source of
randomness. |
void | Initializes this cipher with an operation mode, key, parameters,
and source of randomness. |
void | Initialize this key generator with a key size (in bits) and a
source of randomness.
|
void | Initialize this key agreement with a key and source of randomness.
|
void | Initialize this key agreement with a key, parameters, and source of
randomness.
|
void | Initialize this key generator with a source of randomness; the
implementation should use reasonable default parameters (such as
generated key size).
|
void | Initialize this key generator with parameters and a source of
randomness.
|
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 cipher with the supplied key 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 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 generator with a key size (in bits) and a
source of randomness.
|
void | Initialize this cipher with the public key from the given
certificate and the specified 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.
As per the Java 1.4 specification, if cert is an
instance of an X509Certificate and its
key usage extension field is incompatible with
opmode then an InvalidKeyException is thrown.
If this cipher requires any random bytes (for example for an
initilization vector) than 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 key agreement with a key and a source of
randomness.
|
void | Initialize this key agreement with a key, parameters, and source of
randomness.
|
void | Initialize this key generator with a source of randomness. |
void | Initialize this key generator with a set of parameters and a source
of randomness.
|
Fields of type java.security.SecureRandom | |
SecureRandom | Application-specified source of randomness. |
Methods with parameter type java.security.SecureRandom | |
void | Initializes the parameter generator with the specified size
and SecureRandom
|
void | Initializes the parameter generator with the specified
AlgorithmParameterSpec and SecureRandom classes.
|
void | Initializes this signature object with the specified private key and
source of randomness for signing operations.
This concrete method has been added to this previously-defined abstract
class. |
void | Initializes this parameter generator for a certain size and source of
randomness.
|
void | Initializes this parameter generator with a set of algorithm-specific
parameter generation values.
|
void | Initialize this object for signing. |
void | Initializes the key pair generator for a certain keysize with the given
source of randomness (and a default parameter set).
|
void | Initialize the KeyPairGeneratorSpi with the specified
key size and source of randomness
|
void | Initializes the key pair generator with the given parameter set and
source of randomness.
This concrete method has been added to this previously-defined abstract
class. |
void | Initialize the KeyPairGeneratorSpi with the specified
AlgorithmParameterSpec and source of randomness
This is a concrete method. |
Methods with return type java.security.SecureRandom | |
SecureRandom | Returns an instance of a SecureRandom. |
SecureRandom | Returns an instance of a SecureRandom. |
SecureRandom | Returns an instance of a SecureRandom. |
GNU Classpath (0.20) |