C# 클래스 Granados.Util.SecureRandomBuffer

A class provides pre-buffered random bytes.
파일 보기 프로젝트 열기: poderosaproject/poderosa

공개 메소드들

메소드 설명
GetRandomBytes ( byte buff ) : void

Get pre-buffered random bytes.

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

Get pre-buffered random bytes.

비공개 메소드들

메소드 설명
GetRandomBytesInternal ( byte buff, int offset, int length ) : void

Get pre-buffered random bytes.

SecureRandomBuffer ( ) : System

Constructor

메소드 상세

GetRandomBytes() 공개 정적인 메소드

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

GetRandomBytes() 공개 정적인 메소드

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.
리턴 void