Method | Description | |
---|---|---|
Base64ToBytes ( string b64String ) : byte[] | ||
BytesToBase64 ( byte bytes ) : string | ||
BytesToHex ( byte bytes ) : string | ||
BytesToString ( byte bytes ) : string | ||
HexToBytes ( string hexString ) : byte[] | ||
HexToBytes ( string hexString, int &discarded ) : byte[] | ||
InHexFormat ( string hexString ) : bool | ||
IsHexDigit ( Char c ) : bool | ||
StringToBytes ( string data ) : byte[] |
Method | Description | |
---|---|---|
ByteEncoding ( ) : System | ||
GetByteCount ( string hexString ) : int | ||
HexToByte ( string hex ) : byte |
public static Base64ToBytes ( string b64String ) : byte[] | ||
b64String | string | |
return | byte[] |
public static BytesToBase64 ( byte bytes ) : string | ||
bytes | byte | |
return | string |
public static BytesToHex ( byte bytes ) : string | ||
bytes | byte | |
return | string |
public static BytesToString ( byte bytes ) : string | ||
bytes | byte | |
return | string |
public static HexToBytes ( string hexString ) : byte[] | ||
hexString | string | |
return | byte[] |
public static HexToBytes ( string hexString, int &discarded ) : byte[] | ||
hexString | string | |
discarded | int | |
return | byte[] |
public static InHexFormat ( string hexString ) : bool | ||
hexString | string | |
return | bool |
public static StringToBytes ( string data ) : byte[] | ||
data | string | |
return | byte[] |