Uses of Interface
java.security.SecureRandomParameters
Packages that use SecureRandomParameters
-
Uses of SecureRandomParameters in java.security
Classes in java.security that implement SecureRandomParametersModifier and TypeClassDescriptionstatic final class
DRBG parameters for instantiation.static final class
DRBG parameters for random bits generation.static final class
DRBG parameters for reseed.Methods in java.security that return SecureRandomParametersModifier and TypeMethodDescriptionprotected SecureRandomParameters
SecureRandomSpi.engineGetParameters()
Returns the effectiveSecureRandomParameters
for thisSecureRandom
instance.SecureRandom.getParameters()
Returns the effectiveSecureRandomParameters
for thisSecureRandom
instance.Methods in java.security with parameters of type SecureRandomParametersModifier and TypeMethodDescriptionprotected void
SecureRandomSpi.engineNextBytes
(byte[] bytes, SecureRandomParameters params) Generates a user-specified number of random bytes with additional parameters.protected void
SecureRandomSpi.engineReseed
(SecureRandomParameters params) Reseeds this random object with entropy input read from its entropy source with additional parameters.static SecureRandom
SecureRandom.getInstance
(String algorithm, SecureRandomParameters params) Returns aSecureRandom
object that implements the specified Random Number Generator (RNG) algorithm and supports the specifiedSecureRandomParameters
request.static SecureRandom
SecureRandom.getInstance
(String algorithm, SecureRandomParameters params, String provider) Returns aSecureRandom
object that implements the specified Random Number Generator (RNG) algorithm and supports the specifiedSecureRandomParameters
request.static SecureRandom
SecureRandom.getInstance
(String algorithm, SecureRandomParameters params, Provider provider) Returns aSecureRandom
object that implements the specified Random Number Generator (RNG) algorithm and supports the specifiedSecureRandomParameters
request.void
SecureRandom.nextBytes
(byte[] bytes, SecureRandomParameters params) Generates a user-specified number of random bytes with additional parameters.void
SecureRandom.reseed
(SecureRandomParameters params) Reseeds thisSecureRandom
with entropy input read from its entropy source with additional parameters.Constructors in java.security with parameters of type SecureRandomParametersModifierConstructorDescriptionprotected
Constructor with a parameter.