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

Method BinaryToBase64

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

Source from the content-addressed store, hash-verified

79 }
80
81 public static String BinaryToBase64(byte[] buff) {
82 return Base64.getEncoder().encodeToString(buff);
83 }
84
85 public static byte[] Base64ToBinary(Object s) {
86 return Base64.getDecoder().decode(toString(s));

Callers 5

Base64urlEncodeMethod · 0.95
HmacMethod · 0.95
HashMethod · 0.95
JwtMethod · 0.95
RsaMethod · 0.95

Calls 1

getEncoderMethod · 0.45

Tested by

no test coverage detected