MCPcopy Create free account
hub / github.com/bit4woo/ReSign / decode

Method decode

src/custom/CBase64.java:88–90  ·  view source on GitHub ↗

Decode the Base64-encoded data in input and return the data in a new byte array.   The padding '=' characters at the end are considered optional, but if any are present, there must be the correct number of them. @param str the input String to decode, which is converted to bytes usi

(String str, int flags)

Source from the content-addressed store, hash-verified

86 * @throws IllegalArgumentException if the input contains incorrect padding
87 */
88 public static byte[] decode(String str, int flags) {
89 return decode(str.getBytes(), flags);
90 }
91
92 /**
93 * Decode the Base64-encoded data in input and return the data in a new byte array.

Callers 3

decryptMethod · 0.95
decryptMethod · 0.95
actionPerformedMethod · 0.80

Calls 1

processMethod · 0.95

Tested by

no test coverage detected