KKSU
2023-12-13 e89fa51bb8592aae31ed345400c5a632e394739d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.pay.util;
 
/**
 * 编解码工具类
 * @author chenyf
 * @date 2018-12-15
 */
public class CodeUtil {
 
    public static String base64Encode(byte[] value) {
        return Base64Util.encode(value);
    }
 
    public static byte[] base64Decode(String value) {
        return Base64Util.decode(value);
    }
}