C# Class Granados.Util.SecureRandomBuffer

A class provides pre-buffered random bytes.
ファイルを表示 Open project: poderosaproject/poderosa

Public Methods

Method Description
GetRandomBytes ( byte buff ) : void

Get pre-buffered random bytes.

GetRandomBytes ( byte buff, int offset, int length ) : void

Get pre-buffered random bytes.

Private Methods

Method Description
GetRandomBytesInternal ( byte buff, int offset, int length ) : void

Get pre-buffered random bytes.

SecureRandomBuffer ( ) : System

Constructor

Method Details

GetRandomBytes() public static method

Get pre-buffered random bytes.
public static GetRandomBytes ( byte buff ) : void
buff byte an array that random bytes are copied to.
return void

GetRandomBytes() public static method

Get pre-buffered random bytes.
public static GetRandomBytes ( byte buff, int offset, int length ) : void
buff byte an array that random bytes are copied to.
offset int start index of the array.
length int number of bytes to be copied.
return void