温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何用DES算法实现加解密?

发布时间:2020-06-01 14:21:59 来源:亿速云 阅读:269 作者:Leah 栏目:编程语言

如何用DES算法实现加解密?这篇文章运用了实例代码展示,代码非常详细,可供感兴趣的小伙伴们参考借鉴,希望对大家有所帮助。

package com.util;

import java.net.URLDecoder;
import java.net.URLEncoder;
import java.security.Key;
import java.security.spec.AlgorithmParameterSpec;

import javax.crypto.Cipher;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import javax.crypto.spec.IvParameterSpec;

import org.apache.commons.lang3.StringUtils;

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

/**

加密/解密工具
*/
public class EncrypDES {

private final byte[] DESIV = new byte[] { 0x12, 0x34, 0x56, 120, (byte) 0x90, (byte) 0xab, (byte) 0xcd, (byte) 0xef };// 向量
public static final String key_System = "9ba45bfd500642328ec03ad8ef1b6e75";// 自定义密钥
private AlgorithmParameterSpec iv = null;// 加密算法的参数接口
private Key key = null;
private String charset = "utf-8";//默认编码

/**

  • 初始化
  • @param deSkey 密钥
  • @throws Exception
    */
    public  EncrypDES(String deSkey, String charset) throws Exception {
    if (StringUtils.isNotBlank(charset)) {
    this.charset = charset;
    }
    DESKeySpec keySpec = new DESKeySpec(deSkey.getBytes(this.charset));// 设置密钥参数
    iv = new IvParameterSpec(DESIV);// 设置向量
    SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");// 获得密钥工厂
    key = keyFactory.generateSecret(keySpec);// 得到密钥对象
    }

/**

  • 加密
  • @param data
  • @return
  • @throws Exception
    */
    public String encode(String data) throws Exception {
    Cipher enCipher = Cipher.getInstance("DES/CBC/PKCS5Padding");// 得到加密对象Cipher
    enCipher.init(Cipher.ENCRYPT_MODE, key, iv);// 设置工作模式为加密模式,给出密钥和向量
    byte[] pasByte = enCipher.doFinal(data.getBytes("utf-8"));
    BASE64Encoder base64Encoder = new BASE64Encoder();
    return URLEncoder.encode(base64Encoder.encode(pasByte));
    }

/**

  • 解密
  • @param data
  • @return
  • @throws Exception
    */
    public String decode(String data) throws Exception {
    data=URLDecoder.decode(data);
    Cipher deCipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
    deCipher.init(Cipher.DECRYPT_MODE, key, iv);
    BASE64Decoder base64Decoder = new BASE64Decoder();
    byte[] pasByte = deCipher.doFinal(base64Decoder.decodeBuffer(data));
    return new String(pasByte, "UTF-8");
    }

public static void main(String[] args) {
try {
String test = "www.java112.com";
EncrypDES des = new EncrypDES(EncrypDES.key_System, "utf-8");
System.out.println("加密前的字符:" + test);
System.out.println("加密后的字符:" + des.encode(test));
System.out.println("解密后的字符:" + des.decode(des.encode(test)));
} catch (Exception e) {
e.printStackTrace();
}
}
}

看完上述内容,你们掌握用DES算法实现加解密的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI