Java.Security.SecureRandom: Method Members

The methods of Java.Security.SecureRandom are listed below. For a list of all members, see the SecureRandom Members list.

See Also: Inherited members from Java.Util.Random

Public Methods

GenerateSeed(int) : byte[]
Generates and returns the specified number of seed bytes, computed using the seed generation algorithm used by this SecureRandom.
static
GetInstance(string) : SecureRandom
Returns a new instance of SecureRandom that utilizes the specified algorithm.
static
GetInstance(string, Provider) : SecureRandom
Returns a new instance of SecureRandom that utilizes the specified algorithm from the specified provider.
static
GetInstance(string, string) : SecureRandom
Returns a new instance of SecureRandom that utilizes the specified algorithm from the specified provider.
static
GetSeed(int) : byte[]
Generates and returns the specified number of seed bytes, computed using the seed generation algorithm used by this SecureRandom.
SetSeed(byte[])
Seeds this SecureRandom instance with the specified seed.

Protected Methods

override
Next(int) : int
Generates and returns an int containing the specified number of random bits (right justified, with leading zeros).