java.lang.ObjectThejava.security.AlgorithmParameterGenerator
AlgorithmParameterGenerator class is used to generate a
set of
parameters to be used with a certain algorithm. Parameter generators
are constructed using the getInstance factory methods
(static methods that return instances of a given class).
The object that will generate the parameters can be initialized in two different ways: in an algorithm-independent manner, or in an algorithm-specific manner:
In case the client does not explicitly initialize the
AlgorithmParameterGenerator
(via a call to an init method), each provider must supply (and
document) a default initialization. For example, the Sun provider uses a
default modulus prime size of 1024 bits for the generation of DSA
parameters.
Jan - Luehe1.2 - | Constructor: |
|---|
|
| Method from java.security.AlgorithmParameterGenerator Summary: |
|---|
| generateParameters, getAlgorithm, getInstance, getInstance, getInstance, getProvider, init, init, init, init |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.security.AlgorithmParameterGenerator Detail: |
|---|
|
|
This method traverses the list of registered security Providers, starting with the most preferred Provider. A new AlgorithmParameterGenerator object encapsulating the AlgorithmParameterGeneratorSpi implementation from the first Provider that supports the specified algorithm is returned. Note that the list of registered providers may be retrieved via the Security.getProviders() method. |
A new AlgorithmParameterGenerator object encapsulating the AlgorithmParameterGeneratorSpi implementation from the specified provider is returned. The specified provider must be registered in the security provider list. Note that the list of registered providers may be retrieved via the Security.getProviders() method. |
A new AlgorithmParameterGenerator object encapsulating the AlgorithmParameterGeneratorSpi implementation from the specified Provider object is returned. Note that the specified Provider object does not have to be registered in the provider list. |
|
SecureRandom
implementation of the highest-priority installed provider is used as
the source of randomness.
(If none of the installed providers supply an implementation of
SecureRandom, a system-provided source of randomness is
used.) |
SecureRandom
implementation of the highest-priority installed provider is used as
the source of randomness.
(If none of the installed providers supply an implementation of
SecureRandom, a system-provided source of randomness is
used.) |
|
|