C# Class Org.BouncyCastle.Utilities.Encoders.HexTranslator

A hex translator.
Inheritance: ITranslator
Afficher le fichier Open project: nonorganic/dssnet

Méthodes publiques

Méthode Description
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.

Method Details

Decode() public méthode

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.
Résultat int

Encode() public méthode

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.
Résultat int

GetDecodedBlockSize() public méthode

Returns the decoded block size.
public GetDecodedBlockSize ( ) : int
Résultat int

GetEncodedBlockSize() public méthode

Return encoded block size.
public GetEncodedBlockSize ( ) : int
Résultat int