MCPcopy Create free account
hub / github.com/Card-Forge/forge / encode

Method encode

forge-core/src/main/java/forge/util/Base64Coder.java:188–190  ·  view source on GitHub ↗

Encodes a byte array into Base64 format. No blanks or line breaks are inserted in the output. @param in An array containing the data bytes to be encoded. @return A character array containing the Base64 encoded data.

(final byte[] in)

Source from the content-addressed store, hash-verified

186 * @return A character array containing the Base64 encoded data.
187 */
188 public static char[] encode(final byte[] in) {
189 return Base64Coder.encode(in, 0, in.length);
190 }
191
192 /**
193 * Encodes a byte array into Base64 format. No blanks or line breaks are

Callers 4

encodeStringMethod · 0.95
encodeLinesMethod · 0.95
encryptMethod · 0.95
encodeUtf8Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected