| java.lang.Object org.bouncycastle.util.encoders.Hex
Method Summary | |
public static byte[] | decode(byte[] data) decode the Hex encoded input data. | public static byte[] | decode(String data) decode the Hex encoded String data - whitespace will be ignored. | public static int | decode(String data, OutputStream out) decode the Hex encoded String data writing it to the given output stream,
whitespace characters will be ignored. | public static byte[] | encode(byte[] data) encode the input data producing a Hex encoded byte array. | public static byte[] | encode(byte[] data, int off, int length) encode the input data producing a Hex encoded byte array. | public static int | encode(byte[] data, OutputStream out) Hex encode the byte data writing it to the given output stream. | public static int | encode(byte[] data, int off, int length, OutputStream out) Hex encode the byte data writing it to the given output stream. |
decode | public static byte[] decode(byte[] data)(Code) | | decode the Hex encoded input data. It is assumed the input data is valid.
a byte array representing the decoded data. |
decode | public static byte[] decode(String data)(Code) | | decode the Hex encoded String data - whitespace will be ignored.
a byte array representing the decoded data. |
decode | public static int decode(String data, OutputStream out) throws IOException(Code) | | decode the Hex encoded String data writing it to the given output stream,
whitespace characters will be ignored.
the number of bytes produced. |
encode | public static byte[] encode(byte[] data)(Code) | | encode the input data producing a Hex encoded byte array.
a byte array containing the Hex encoded data. |
encode | public static byte[] encode(byte[] data, int off, int length)(Code) | | encode the input data producing a Hex encoded byte array.
a byte array containing the Hex encoded data. |
encode | public static int encode(byte[] data, OutputStream out) throws IOException(Code) | | Hex encode the byte data writing it to the given output stream.
the number of bytes produced. |
encode | public static int encode(byte[] data, int off, int length, OutputStream out) throws IOException(Code) | | Hex encode the byte data writing it to the given output stream.
the number of bytes produced. |
|
|