MCPcopy Create free account
hub / github.com/buggins/coolreader / decode

Method decode

android/src/org/coolreader/donations/util/Base64.java:418–421  ·  view source on GitHub ↗

Decodes data from Base64 notation. @param s the string to decode (decoded in default encoding) @return the decoded data @since 1.4

(String s)

Source from the content-addressed store, hash-verified

416 * @since 1.4
417 */
418 public static byte[] decode(String s) throws Base64DecoderException {
419 byte[] bytes = s.getBytes();
420 return decode(bytes, 0, bytes.length);
421 }
422
423 /**
424 * Decodes data from web safe Base64 notation.

Callers 3

generatePublicKeyMethod · 0.95
verifyMethod · 0.95
decodeWebSafeMethod · 0.95

Calls 1

decode4to3Method · 0.95

Tested by

no test coverage detected