public class Hex
extends java.lang.Object
Constructor and Description |
---|
Hex() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(byte[] data)
decode the Hex encoded input data.
|
static byte[] |
decode(java.lang.String data)
decode the Hex encoded String data - whitespace will be ignored.
|
static int |
decode(java.lang.String data,
java.io.OutputStream out)
decode the Hex encoded String data writing it to the given output stream,
whitespace characters will be ignored.
|
static byte[] |
decodeStrict(java.lang.String str)
Decode the hexadecimal-encoded string strictly i.e.
|
static byte[] |
decodeStrict(java.lang.String str,
int off,
int len)
Decode the hexadecimal-encoded string strictly i.e.
|
static byte[] |
encode(byte[] data)
encode the input data producing a Hex encoded byte array.
|
static byte[] |
encode(byte[] data,
int off,
int length)
encode the input data producing a Hex encoded byte array.
|
static int |
encode(byte[] data,
int off,
int length,
java.io.OutputStream out)
Hex encode the byte data writing it to the given output stream.
|
static int |
encode(byte[] data,
java.io.OutputStream out)
Hex encode the byte data writing it to the given output stream.
|
static java.lang.String |
toHexString(byte[] data) |
static java.lang.String |
toHexString(byte[] data,
int off,
int length) |
public static java.lang.String toHexString(byte[] data)
public static java.lang.String toHexString(byte[] data, int off, int length)
public static byte[] encode(byte[] data)
public static byte[] encode(byte[] data, int off, int length)
public static int encode(byte[] data, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static int encode(byte[] data, int off, int length, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static byte[] decode(byte[] data)
public static byte[] decode(java.lang.String data)
public static int decode(java.lang.String data, java.io.OutputStream out) throws java.io.IOException
java.io.IOException
public static byte[] decodeStrict(java.lang.String str)
public static byte[] decodeStrict(java.lang.String str, int off, int len)