MCPcopy Create free account
hub / github.com/jwtk/jjwt / Base64Decoder

Class Base64Decoder

api/src/main/java/io/jsonwebtoken/io/Base64Decoder.java:26–41  ·  view source on GitHub ↗

Very fast Base64 decoder guaranteed to work in all >= Java 7 JDK and Android environments. @since 0.10.0

Source from the content-addressed store, hash-verified

24 * @since 0.10.0
25 */
26class Base64Decoder extends Base64Support implements Decoder<CharSequence, byte[]> {
27
28 Base64Decoder() {
29 super(Base64.DEFAULT);
30 }
31
32 Base64Decoder(Base64 base64) {
33 super(base64);
34 }
35
36 @Override
37 public byte[] decode(CharSequence s) throws DecodingException {
38 Assert.notNull(s, "String argument cannot be null");
39 return this.base64.decodeFast(s);
40 }
41}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…