}
/**
* DES 加密 <br>
*
* @author : chenssy
* @date : 2016 年 5 月 20 日 下午 5:39:46
*
* @param value
* 待加密字符
* @param key
* 若 key 为空,则应用默认 key
* @return
* 加密胜利返回密文,否则返回 null
*/
public static String desEncrypt(String value,String key){
key = key == null ? DESUtils.KEY : key;
String result = null;
try {if(value != null && !"".equals(value.trim())){result = DESUtils.encrypt(value, key);
}
} catch (Exception e) {e.printStackTrace();
}
return result;
}
/**
* DES 解密
*
* @author : chenssy
* @date : 2016 年 5 月 20 日 下午 5:55:56
*
* @param value
* 待解密字符
* @param key
* 若 key 为空,则应用默认 key
* @return
* @return
*/
public static String desDecrypt(String value,String key){
key = key == null ? DESUtils.KEY : key;
String result = null;
try {if(value != null && !"".equals(value.trim())){result = DESUtils.decrypt(value, key);
}
} catch (Exception e) {e.printStackTrace();
}
return result;
}
/**
* AES 加密
*
* @author:chenssy
* @date : 2016 年 5 月 21 日 上午 9:58:58
*
* @param value
* 待加密内容
* @param key
* 秘钥
* @return
*/
public static String aesEncrypt(String value,String key){
key = key == null ? AESUtils.KEY : key;
String result = null;
try {if(value != null && !"".equals(value.trim())){ //value is not null
result = AESUtils.encrypt(value,key);
}
} catch (Exception e) {e.printStackTrace();
}
return result;
}
/**
* AES 解密
*
* @author:chenssy
* @date : 2016 年 5 月 21 日 上午 10:02:07
*
* @param value
* 待解密内容
* @param key
* 秘钥
* @return
*/
public static String aesDecrypt(String value , String key){
key = key == null ? AESUtils.KEY : key;
String result = null;
try {if(value != null && !"".equals(value.trim())){ //value is not null
result = AESUtils.decrypt(value,key);
}
} catch (Exception e) {e.printStackTrace();
}
return result;