当前位置:   article > 正文

jdk1.8 自带的Base64加密与解密_jdk1.8 base64 3des加密

jdk1.8 base64 3des加密

注意:这个加密以后返回的加密字符串可能是下面这个样子的(后面带=),正常现象不是自己代码的问题0.0,不要头铁的去找哪里自己写错了

加密返回如下:
ZHNhZmFzZnNhZmFzZnNhZmFzZmFzZ2FzZg==
解密返回如下:
dsafasfsafasfsafasfasgasf
  • 1
  • 2
  • 3
  • 4

1.代码

package test;

import java.util.Base64;

/**
 * zt
 * 2020/9/14
 * 17:40
 */
public class MyTest {
    //加密
    public static String encode(String str){
        /*String encode = Base64.getEncoder().encodeToString(str.getBytes());
        System.out.println(str + "\t编码后的字符串为:" + encode);
        return str;*/
        return new String(Base64.getEncoder().encode(str.getBytes()));
    }
    //解密
    public static String decode(String str){
       /* String decode = new String(Base64.getDecoder().decode(str));
        System.out.println(str + "\t字符串解码后为:" + decode);
        return decode;*/
        return new String(Base64.getDecoder().decode(str));
    }

    public static void main(String[] args) {
        String str = "asadasdas";
        //加密
        /*String encode = Base64.getEncoder().encodeToString(str.getBytes());
        System.out.println(str + "\t编码后的字符串为:" + encode);
        //解密
        String decode = new String(Base64.getDecoder().decode(encode));
        System.out.println(encode + "\t字符串解码后为:" + decode);*/
        String encode = encode(str);
        System.out.println(encode);
        String decode = decode(encode);
        System.out.println(decode);
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

运行结果1
在这里插入图片描述
运行结果2
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/953525
推荐阅读
相关标签
  

闽ICP备14008679号