org.bouncycastle.util.encoders
public class Hex extends Object
Method Summary | |
---|---|
static byte[] | decode(byte[] data)
decode the Hex encoded input data. |
static byte[] | decode(String data)
decode the Hex encoded String data - whitespace will be ignored.
|
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.
|
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, OutputStream out)
Hex encode the byte data writing it to the given output stream.
|
static int | encode(byte[] data, int off, int length, OutputStream out)
Hex encode the byte data writing it to the given output stream.
|
Returns: a byte array representing the decoded data.
Returns: a byte array representing the decoded data.
Returns: the number of bytes produced.
Returns: a byte array containing the Hex encoded data.
Returns: a byte array containing the Hex encoded data.
Returns: the number of bytes produced.
Returns: the number of bytes produced.