Base64URL.java defect
Closed this issue · 0 comments
shendebin commented
defect:
return new BASE64Decoder().decodeBuffer(base64.toString()); //base64.toString() ???
solution:
return new BASE64Decoder().decodeBuffer(new ByteArrayInputStream(base64));