base64实现 简单的加密解密

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

import java.io.IOException;

/**
 BASE64的加密解密是双向的,可以求反解.
 BASE64Encoder和BASE64Decoder是非官方JDK实现类。虽然可以在JDK里能找到并使用,但是在API里查不到。
 JRE 中 sun 和 com.sun 开头包的类都是未被文档化的,他们属于 java, javax 类库的基础,其中的实现大多数与底层平台有关,
 一般来说是不推荐使用的。
 BASE64 严格地说,属于编码格式,而非加密算法
 主要就是BASE64Encoder、BASE64Decoder两个类,我们只需要知道使用对应的方法即可。
 另,BASE加密后产生的字节位数是8的倍数,如果不够位数以=符号填充。
 BASE64
 按照RFC2045的定义,Base64被定义为:Base64内容传送编码被设计用来把任意序列的8位字节描述为一种不易被人直接识别的形式。
 (The Base64 Content-Transfer-Encoding is designed to represent arbitrary sequences of octets in a form that need not be humanly readable.)
 常见于邮件、http加密,截取http信息,你就会发现登录操作的用户名、密码字段通过BASE64加密的。
 */
public class BASE64Utils {

    /**
     * BASE64解密
     * @param key
     * @return
     */
    public static byte[] decryptBASE64(String key) {
        try {
            return new BASE64Decoder().decodeBuffer(key);
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }
    }

    /**
     * BASE64加密
     * @param key
     * @return
     */
    public static String encryptBASE64(byte[] key){
        return new BASE64Encoder().encodeBuffer(key);
    }

    public static void main(String[] args) {

        String  str="12345678";
        String  result1= BASE64Utils.encryptBASE64(str.getBytes());
        System.out.println("result1=====加密数据=========="+result1);

        byte  result2[]= BASE64Utils.decryptBASE64(result1);
        String  str2=new String(result2);
        System.out.println("str2========解密数据========"+str2);

    }

}
发布了42 篇原创文章 · 获赞 14 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/a116385895/article/details/90267021