fix
Hentua
2023-04-25 6c98fa6643e00e6a31b87d58184b6470f990e76f
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);
    }
}