Package org.bouncycastle.util.encoders
Class Hex
java.lang.Object
org.bouncycastle.util.encoders.Hex
Utility class for converting hex data to bytes and back again.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic byte[]
decode
(byte[] data) decode the Hex encoded input data.static byte[]
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[]
decodeStrict
(String str) Decode the hexadecimal-encoded string strictly i.e.static byte[]
decodeStrict
(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, OutputStream out) Hex encode the byte data writing it to the given output stream.static int
encode
(byte[] data, OutputStream out) Hex encode the byte data writing it to the given output stream.static String
toHexString
(byte[] data) static String
toHexString
(byte[] data, int off, int length)
-
Constructor Details
-
Hex
public Hex()
-
-
Method Details
-
toHexString
-
toHexString
-
encode
public static byte[] encode(byte[] data) encode the input data producing a Hex encoded byte array.- Returns:
- a byte array containing the Hex encoded data.
-
encode
public static byte[] encode(byte[] data, int off, int length) encode the input data producing a Hex encoded byte array.- Returns:
- a byte array containing the Hex encoded data.
-
encode
Hex encode the byte data writing it to the given output stream.- Returns:
- the number of bytes produced.
- Throws:
IOException
-
encode
Hex encode the byte data writing it to the given output stream.- Returns:
- the number of bytes produced.
- Throws:
IOException
-
decode
public static byte[] decode(byte[] data) decode the Hex encoded input data. It is assumed the input data is valid.- Returns:
- a byte array representing the decoded data.
-
decode
decode the Hex encoded String data - whitespace will be ignored.- Returns:
- a byte array representing the decoded data.
-
decode
decode the Hex encoded String data writing it to the given output stream, whitespace characters will be ignored.- Returns:
- the number of bytes produced.
- Throws:
IOException
-
decodeStrict
Decode the hexadecimal-encoded string strictly i.e. any non-hexadecimal characters will be considered an error.- Returns:
- a byte array representing the decoded data.
-
decodeStrict
Decode the hexadecimal-encoded string strictly i.e. any non-hexadecimal characters will be considered an error.- Returns:
- a byte array representing the decoded data.
-