使用java实现了des 和 3des
* @param strKey 密钥
* @param result 要解密的数据
* @throws Exception
*/
public String desDecrypt(String strKey,byte[] result) throws Exception {
if(strKey.length() !=16){
for(int i=0;i<16;i++){
strKey=strKey+DEFAULT_BUMA;
}
}
String key =strKey.substring(0, 8);
String key1 = strKey.substring(8, strKey.length());
//
// System.out.println("十六进制key1::"+DesTwo.byteArr2HexStr(key.getBytes()));
// System.out.println("十六进制key2::"+DesTwo.byteArr2HexStr(key1.getBytes()));
// System.out.println("密文:::"+DesTwo.byteArr2HexStr(result));
1