Méthode |
Description |
|
GenerateSeed ( int length ) : byte[] |
|
|
GetInstance ( string algorithm ) : SecureRandom |
|
|
GetSeed ( int length ) : byte[] |
|
|
Next ( ) : int |
|
|
Next ( int maxValue ) : int |
|
|
Next ( int minValue, int maxValue ) : int |
|
|
NextBytes ( byte buffer ) : void |
|
|
NextBytes ( byte buffer, int start, int length ) : void |
|
|
NextDouble ( ) : double |
|
|
NextInt ( ) : int |
|
|
NextLong ( ) : long |
|
|
SecureRandom ( ) : System |
|
|
SecureRandom ( IRandomGenerator generator ) : System |
Use the specified instance of IRandomGenerator as random source. This constructor performs no seeding of either the IRandomGenerator or the constructed SecureRandom . It is the responsibility of the client to provide proper seed material as necessary/appropriate for the given IRandomGenerator implementation. |
|
SecureRandom ( byte inSeed ) : System |
|
|
SetSeed ( byte inSeed ) : void |
|
|
SetSeed ( long seed ) : void |
|
|