MCPcopy Index your code
hub / github.com/bcgit/bc-java / decode

Method decode

core/src/main/java/org/bouncycastle/util/encoders/Hex.java:99–102  ·  view source on GitHub ↗

decode the Hex encoded input data. It is assumed the input data is valid. @return a byte array representing the decoded data.

(byte[] data)

Source from the content-addressed store, hash-verified

97 * @return a byte array representing the decoded data.
98 */
99 public static byte[] decode(byte[] data)
100 {
101 return decode(data, 0, data.length);
102 }
103
104 /**
105 * decode the Hex encoded input data. It is assumed the input data is valid.

Calls 3

decodeMethod · 0.65
toByteArrayMethod · 0.65
getMessageMethod · 0.45