This commit is contained in:
Looly
2021-10-21 13:18:53 +08:00
parent 04032f1094
commit 98512fa1f2
7 changed files with 68 additions and 14 deletions

View File

@@ -299,7 +299,7 @@ public class Base64 {
* base64解码
*
* @param base64 被解码的base64字符串
* @return 被加密后的字符串
* @return 解码后的bytes
*/
public static byte[] decode(CharSequence base64) {
return Base64Decoder.decode(base64);