java 加密 c 解密_JAVA和C通讯的AES加密和解密,供参考

本文档提供了一种使用AES加密算法在JAVA和C之间进行数据安全通信的方法。作者分享了JAVA端的加密和解密代码,采用ECB模式且无填充。文章下方有评论请求C语言的对应实现代码。
摘要由CSDN通过智能技术生成

import javax.crypto.Cipher;

import javax.crypto.spec.SecretKeySpec;

/**

* 自己做的JAVA和C通讯的AES加密和解密,供参考

* @author yaodaqing

*

*/

public class AESAndC02 {

/**

* 密钥

*/

private static final String aesKey = "0123456789abcdef";

/**

* 加密

* @param b

* @return

*/

public static byte[] encryptAES(byte[] b){

if (aesKey == null) {

System.out.print("Key为空null");

return null;

}

//判断Key是否为16位

if (aesKey.length() != 16) {

System.out.print("Key长度不是16位");

return null;

}

try {

byte[] raw = aesKey.getBytes("ASCII");

SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");

Cipher cipher = Cipher.getInstance("AES");

cipher.init(Cipher.ENCRYPT_MODE, skeySpec);

byte[] encrypted = cipher.doFinal(b);

return encrypted;

} catch (Exception e) {

System.out.println("数据加密时发生异常...");

e.printStackTrace();

}

return null;

}

/**

* 解密

* @param b

* @return

* 由于C语言在加密时采用了模式,所以JAVA在解析时需要采用模式来解密

*/

public static byte[] decryptAES(byte[] b){

//判断Key是否正确

if (aesKey == null) {

System.out.print("Key为空null");

return null;

}

//判断Key是否为16位

if (aesKey.length() != 16) {

System.out.print("Key长度不是16位");

return null;

}

try {

byte[] raw = aesKey.getBytes("ASCII");

SecretKeySpec skp = new SecretKeySpec(raw, "AES");

Cipher cipher = Cipher.getInstance("AES/ECB/NoPadding");

cipher.init(Cipher.DECRYPT_MODE, skp);

byte[] original = cipher.doFinal(b);

return original;

} catch (Exception e) {

System.out.println("数据解密时发生异常...");

e.printStackTrace();

}

return null;

}

}

分享到:

18e900b8666ce6f233d25ec02f95ee59.png

72dd548719f0ace4d5f9bca64e1d7715.png

2010-12-03 11:10

浏览 7547

评论

3 楼

缘来是你

2016-02-01

同求C源码

2 楼

ioandy

2016-01-05

同求C源码,757455159@qq.com

1 楼

ninthbar

2012-05-23

最近项目也要和c系统交互,请问能否提供一下C语言的相应加解密实现代码?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值