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

cn.t.util.security.message.base64.Base64Util Maven / Gradle / Ivy

There is a newer version: 1.0.16.RELEASE
Show newest version
package cn.t.util.security.message.base64;

import java.util.Base64;

public class Base64Util {

    public static byte[] encode(byte[] bs) {
        return Base64.getEncoder().encode(bs);
    }

    public static byte[] decode(byte[] bs) {
        return Base64.getDecoder().decode(bs);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy