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

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

package xxl.mathematica.cryptology;


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

/**
 * Base64字节数组解密成字节数组
 */
public class BaseDecode {
    public static byte[] baseDecode(byte[] data) {
        return Base64.decodeBase64(data);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy