MCPcopy Index your code
hub / github.com/ccxt/ccxt / Base64ToBinary

Method Base64ToBinary

java/lib/src/main/java/io/github/ccxt/base/Encode.java:64–67  ·  view source on GitHub ↗
(Object pt)

Source from the content-addressed store, hash-verified

62
63 public static byte[] base64ToBinary(Object pt) { return Base64ToBinary(pt); }
64 public static byte[] Base64ToBinary(Object pt) {
65 String s = (String) pt;
66 return Base64.getDecoder().decode(s);
67 }
68
69 public static String binaryToBase64(byte[] buff) { return BinaryToBase64(buff); }
70 public static String BinaryToBase64(byte[] buff) {

Callers 1

base64ToBinaryMethod · 0.95

Calls 1

decodeMethod · 0.45

Tested by

no test coverage detected