MCPcopy Create free account
hub / github.com/f0ng/captcha-killer-modified / base64Decode

Method base64Decode

src/main/java/utils/Util.java:293–298  ·  view source on GitHub ↗
(String str)

Source from the content-addressed store, hash-verified

291 }
292
293 public static byte[] base64Decode(String str){
294// final Base64.Decoder decoder = new Base64.Decoder;
295 byte[] byteRes = new byte[]{};
296 byteRes = Base64.getDecoder().decode(str);
297 return byteRes;
298 }
299
300 public static boolean isURL(String url){
301 if (url == null ){

Callers 3

parseAllLableMethod · 0.80
encdoeLableMethod · 0.80
mainMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected