Android 加密之DES加密
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 加密之DES加密相关的知识,希望对你有一定的参考价值。
参考技术A des对称加密,是一种比较传统的加密方式,其加密运算、解密运算使用的是同样的密钥,信息的发送者和信息的接收者在进行信息的传输与处理时,必须共同持有该密码(称为对称密码),是一种对称加密算法。DES全称Data Encryption Standard,是一种使用密匙加密的块算法。现在认为是一种不安全的加密算法,因为现在已经有用穷举法攻破DES密码的报道了。尽管如此,该加密算法还是运用非常普遍,是一种标准的加密算法。3DES是DES的加强版本。
DES 使用一个 56 位的密钥以及附加的 8 位奇偶校验位,产生最大 64 位的分组大小。这是一个迭代的分组密码,使用称为 Feistel 的技术,其中将加密的文本块分成两半。使用子密钥对其中一半应用循环功能,然后将输出与另一半进行“异或”运算;接着交换这两半,这一过程会继续下去,但最后一个循环不交换。DES 使用 16 个循环,使用异或,置换,代换,移位操作四种基本运算。
java加密算法之DES篇
闲话不多说,我们直接上干货
加密
public static String encrypt(String datasource) {
try{
DESKeySpec desKey = new DESKeySpec(PASSWORD.getBytes());
//创建一个密匙工厂,获取secretKey
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
SecretKey secretKey = keyFactory.generateSecret(desKey);
//指定获取DES的Cipher对象
Cipher cipher = Cipher.getInstance("DES");
//用密匙初始化Cipher对象
cipher.init(Cipher.ENCRYPT_MODE, secretKey, new SecureRandom());
//数据加密
return parseByte2HexStr(cipher.doFinal(datasource.getBytes("utf-8")));
}catch(Throwable e){
e.printStackTrace();
}
return null;
}
解密
public static String decrypt(String src){
try{
// 创建一个DESKeySpec对象,PASSWORD可任意指定
DESKeySpec desKey = new DESKeySpec(PASSWORD.getBytes());
// 创建一个密匙工厂
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
// 生成密钥
SecretKey secretkey = keyFactory.generateSecret(desKey);
// 指定获取DES的Cipher对象
Cipher cipher = Cipher.getInstance("DES");
// 用密匙初始化Cipher对象
cipher.init(Cipher.DECRYPT_MODE, secretkey, new SecureRandom());
// 真正开始解密操作
return new String(cipher.doFinal(parseHexStr2Byte(src)));
}catch(Throwable e){
e.printStackTrace();
}
return null;
}
测试
public static void main(String[] args) {
String str = "I'm encode content";
String result = DesUtils.encrypt(str);
System.out.println("encode result is :"+result);
//直接将如上内容解密
try {
String decryResult = DesUtils.decrypt(result);
System.out.println("Decode result is :"+decryResult);
} catch (Exception e1) {
e1.printStackTrace();
}
}
测试结果
全代码
public class DesUtils {
private static final String PASSWORD = "9588028820109132570743325311898426347857298773549468758875018579537757772163084478873699447306034466200616411960574122434059469100235892702736860872901247123456";
public DesUtils() {
}
/**
* 加密
* @param datasource
* @return
*/
public static String encrypt(String datasource) {
try{
DESKeySpec desKey = new DESKeySpec(PASSWORD.getBytes());
//创建一个密匙工厂,获取secretKey
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
SecretKey secretKey = keyFactory.generateSecret(desKey);
//指定获取DES的Cipher对象
Cipher cipher = Cipher.getInstance("DES");
//用密匙初始化Cipher对象
cipher.init(Cipher.ENCRYPT_MODE, secretKey, new SecureRandom());
//数据加密
return parseByte2HexStr(cipher.doFinal(datasource.getBytes("utf-8")));
}catch(Throwable e){
e.printStackTrace();
}
return null;
}
/**
* 解密
* @param src
* @return
*/
public static String decrypt(String src){
try{
// 创建一个DESKeySpec对象,PASSWORD可任意指定
DESKeySpec desKey = new DESKeySpec(PASSWORD.getBytes());
// 创建一个密匙工厂
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
// 生成密钥
SecretKey secretkey = keyFactory.generateSecret(desKey);
// 指定获取DES的Cipher对象
Cipher cipher = Cipher.getInstance("DES");
// 用密匙初始化Cipher对象
cipher.init(Cipher.DECRYPT_MODE, secretkey, new SecureRandom());
// 真正开始解密操作
return new String(cipher.doFinal(parseHexStr2Byte(src)));
}catch(Throwable e){
e.printStackTrace();
}
return null;
}
/**将二进制转换成16进制
* @param buf
* @return
*/
public static String parseByte2HexStr(byte buf[]) {
StringBuffer sb = new StringBuffer();
for (int i = 0; i < buf.length; i++) {
String hex = Integer.toHexString(buf[i] & 0xFF);
if (hex.length() == 1) {
hex = '0' + hex;
}
sb.append(hex.toUpperCase());
}
return sb.toString();
}
/**将16进制转换为二进制
* @param hexStr
* @return
*/
public static byte[] parseHexStr2Byte(String hexStr) {
if (hexStr.length() < 1) {
return null;
}
byte[] result = new byte[hexStr.length()/2];
for (int i = 0;i< hexStr.length()/2; i++) {
int high = Integer.parseInt(hexStr.substring(i*2, i*2+1), 16);
int low = Integer.parseInt(hexStr.substring(i*2+1, i*2+2), 16);
result[i] = (byte) (high * 16 + low);
}
return result;
}
}
以上是关于Android 加密之DES加密的主要内容,如果未能解决你的问题,请参考以下文章