java des .net_java DES加密 .net解密

cb63fbf022c65628d24d457091327306.png

HappyDay1234567890

encrypt的处理流程:

1)使用DES加密

2)使用Base64编码

你要解密就反其道而行之:

1)使用Base64解码

2)然后使用DES算法解密。

下面是Java使用DES加密、解密的过程。

public static final String ALGORITHM_DES = "DES/CBC/PKCS5Padding";

/**

* DES算法,加密

*

* @param data 待加密字符串

* @param key 加密私钥,长度不能够小于8位

* @return 加密后的字节数组,一般结合Base64编码使用

* @throws InvalidAlgorithmParameterException

* @throws Exception

*/

public static String encode(String key,String data) {

if(data == null)

return null;

try{

DESKeySpec dks = new DESKeySpec(key.getBytes());

SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");

//key的长度不能够小于8位字节

Key secretKey = keyFactory.generateSecret(dks);

Cipher cipher = Cipher.getInstance(ALGORITHM_DES);

IvParameterSpec iv = new IvParameterSpec("12345678".getBytes());

AlgorithmParameterSpec paramSpec = iv;

cipher.init(Cipher.ENCRYPT_MODE, secretKey,paramSpec);

byte[] bytes = cipher.doFinal(data.getBytes());

return byte2hex(bytes);

}catch(Exception e){

e.printStackTrace();

return data;

}

}

/**

* DES算法,解密

*

* @param data 待解密字符串

* @param key 解密私钥,长度不能够小于8位

* @return 解密后的字节数组

* @throws Exception 异常

*/

public static String decode(String key,String data) {

if(data == null)

return null;

try {

DESKeySpec dks = new DESKeySpec(key.getBytes());

SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");

//key的长度不能够小于8位字节

Key secretKey = keyFactory.generateSecret(dks);

Cipher cipher = Cipher.getInstance(ALGORITHM_DES);

IvParameterSpec iv = new IvParameterSpec("12345678".getBytes());

AlgorithmParameterSpec paramSpec = iv;

cipher.init(Cipher.DECRYPT_MODE, secretKey, paramSpec);

return new String(cipher.doFinal(hex2byte(data.getBytes())));

} catch (Exception e){

e.printStackTrace();

return data;

}

}

对于使用Base64解码的过程,.net肯定有现成的API,

对于DES解密的过程,你只需要参考这个例子,转换成使用.net相关API就可以了

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值