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 classDrbgParameters.InstantiationDRBG parameters for instantiation.static classDrbgParameters.NextBytesDRBG parameters for random bits generation.static classDrbgParameters.ReseedDRBG parameters for reseed.Methods in java.security that return SecureRandomParameters Modifier and Type Method Description protected SecureRandomParametersSecureRandomSpi. engineGetParameters()Returns the effectiveSecureRandomParametersfor thisSecureRandominstance.SecureRandomParametersSecureRandom. getParameters()Returns the effectiveSecureRandomParametersfor thisSecureRandominstance.Methods in java.security with parameters of type SecureRandomParameters Modifier and Type Method Description protected voidSecureRandomSpi. engineNextBytes(byte[] bytes, SecureRandomParameters params)Generates a user-specified number of random bytes with additional parameters.protected voidSecureRandomSpi. engineReseed(SecureRandomParameters params)Reseeds this random object with entropy input read from its entropy source with additional parameters.static SecureRandomSecureRandom. getInstance(String algorithm, SecureRandomParameters params)Returns aSecureRandomobject that implements the specified Random Number Generator (RNG) algorithm and supports the specifiedSecureRandomParametersrequest.static SecureRandomSecureRandom. getInstance(String algorithm, SecureRandomParameters params, String provider)Returns aSecureRandomobject that implements the specified Random Number Generator (RNG) algorithm and supports the specifiedSecureRandomParametersrequest.static SecureRandomSecureRandom. getInstance(String algorithm, SecureRandomParameters params, Provider provider)Returns aSecureRandomobject that implements the specified Random Number Generator (RNG) algorithm and supports the specifiedSecureRandomParametersrequest.voidSecureRandom. nextBytes(byte[] bytes, SecureRandomParameters params)Generates a user-specified number of random bytes with additional parameters.voidSecureRandom. reseed(SecureRandomParameters params)Reseeds thisSecureRandomwith 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.