Uses of Interface
java.security.SecureRandomParameters
Package | Description |
---|---|
java.security |
Provides the classes and interfaces for the security framework.
|
-
Uses of SecureRandomParameters in java.security
Classes in java.security that implement SecureRandomParameters Modifier and Type Class Description static class
DrbgParameters.Instantiation
DRBG parameters for instantiation.static class
DrbgParameters.NextBytes
DRBG parameters for random bits generation.static class
DrbgParameters.Reseed
DRBG parameters for reseed.Methods in java.security that return SecureRandomParameters Modifier and Type Method Description protected SecureRandomParameters
SecureRandomSpi. engineGetParameters()
Returns the effectiveSecureRandomParameters
for thisSecureRandom
instance.SecureRandomParameters
SecureRandom. getParameters()
Returns the effectiveSecureRandomParameters
for thisSecureRandom
instance.Methods in java.security with parameters of type SecureRandomParameters Modifier and Type Method Description protected 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 SecureRandomParameters Constructor Description SecureRandomSpi(SecureRandomParameters params)
Constructor with a parameter.