C# Class BraintreeEncryption.Library.BouncyCastle.Util.Encoders.Hex

Class to decode and encode Hex.
ファイルを表示 Open project: braintree/braintree_windows_phone_encryption

Public Methods

Method Description
Decode ( byte data ) : byte[]
Decode ( string data ) : byte[]
Decode ( string data, Stream outStream ) : int
Encode ( byte data ) : byte[]
Encode ( byte data, int off, int length ) : byte[]
Encode ( byte data, Stream outStream ) : int
Encode ( byte data, int off, int length, Stream outStream ) : int
ToHexString ( byte data ) : string
ToHexString ( byte data, int off, int length ) : string

Private Methods

Method Description
Hex ( ) : System.IO

Method Details

Decode() public static method

public static Decode ( byte data ) : byte[]
data byte
return byte[]

Decode() public static method

public static Decode ( string data ) : byte[]
data string
return byte[]

Decode() public static method

public static Decode ( string data, Stream outStream ) : int
data string
outStream System.IO.Stream
return int

Encode() public static method

public static Encode ( byte data ) : byte[]
data byte
return byte[]

Encode() public static method

public static Encode ( byte data, int off, int length ) : byte[]
data byte
off int
length int
return byte[]

Encode() public static method

public static Encode ( byte data, Stream outStream ) : int
data byte
outStream System.IO.Stream
return int

Encode() public static method

public static Encode ( byte data, int off, int length, Stream outStream ) : int
data byte
off int
length int
outStream System.IO.Stream
return int

ToHexString() public static method

public static ToHexString ( byte data ) : string
data byte
return string

ToHexString() public static method

public static ToHexString ( byte data, int off, int length ) : string
data byte
off int
length int
return string