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

Method BinaryToBase64

java/lib/src/main/java/io/github/ccxt/base/Encode.java:70–72  ·  view source on GitHub ↗
(byte[] buff)

Source from the content-addressed store, hash-verified

68
69 public static String binaryToBase64(byte[] buff) { return BinaryToBase64(buff); }
70 public static String BinaryToBase64(byte[] buff) {
71 return Base64.getEncoder().encodeToString(buff);
72 }
73
74 public static byte[] stringToBinary(String buff) { return StringToBinary(buff); }
75 public static byte[] StringToBinary(String buff) {

Callers 2

binaryToBase64Method · 0.95
Base64urlEncodeMethod · 0.95

Calls 1

getEncoderMethod · 0.45

Tested by

no test coverage detected