All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xxl.mathematica.cryptology.BaseEncode Maven / Gradle / Ivy

package xxl.mathematica.cryptology;


import xxl.apache.commons.codec.binary.Base64;

/**
 * 字节数组加密成Base64字节数组
 */
public class BaseEncode {
    public static byte[] baseEncode(byte[] data) {
        return Base64.encodeBase64(data);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy