C# 클래스 Org.BouncyCastle.Utilities.Encoders.HexTranslator

A hex translator.
상속: ITranslator
파일 보기 프로젝트 열기: nonorganic/dssnet

공개 메소드들

메소드 설명
Decode ( byte input, int inOff, int length, byte outBytes, int outOff ) : int

Decode data from a byte array.

Encode ( byte input, int inOff, int length, byte outBytes, int outOff ) : int

Encode some data.

GetDecodedBlockSize ( ) : int

Returns the decoded block size.

GetEncodedBlockSize ( ) : int

Return encoded block size.

메소드 상세

Decode() 공개 메소드

Decode data from a byte array.
public Decode ( byte input, int inOff, int length, byte outBytes, int outOff ) : int
input byte The input data array.
inOff int Start position within input data array.
length int The amounty of data to process.
outBytes byte The output data array.
outOff int The position within the output data array to start writing from.
리턴 int

Encode() 공개 메소드

Encode some data.
public Encode ( byte input, int inOff, int length, byte outBytes, int outOff ) : int
input byte Input data array.
inOff int Start position within input data array.
length int The amount of data to process.
outBytes byte The output data array.
outOff int The offset within the output data array to start writing from.
리턴 int

GetDecodedBlockSize() 공개 메소드

Returns the decoded block size.
public GetDecodedBlockSize ( ) : int
리턴 int

GetEncodedBlockSize() 공개 메소드

Return encoded block size.
public GetEncodedBlockSize ( ) : int
리턴 int