莫明天涯 2008-11-21
代码如下:
/** * 进行MD5加密 * @param String 原始的SPKEY * @return byte[] 指定加密方式为md5后的byte[] */ private byte[] md5(String strSrc) { byte[] returnByte = null; try { MessageDigest md5 = MessageDigest.getInstance("MD5"); returnByte = md5.digest(strSrc.getBytes("GBK")); } catch(Exception e) { e.printStackTrace(); } return returnByte; }
代码如下:
/** * 得到3-DES的密钥匙 * 根据根据需要,如密钥匙为24个字节,md5加密出来的是16个字节,因此后面补8个字节的0 * @param String 原始的SPKEY * @return byte[] 指定加密方式为md5后的byte[] */ private byte[] getEnKey(String spKey) { byte[] desKey=null; try { byte[] desKey1 = md5(spKey); desKey = new byte[24]; int i = 0; while (i < desKey1.length && i < 24) { desKey[i] = desKey1[i]; i++; } if (i < 24) { desKey[i] = 0; i++; } } catch(Exception e){ e.printStackTrace(); } return desKey; }
代码如下:
/** * 3-DES加密 * @param byte[] src 要进行3-DES加密的byte[] * @param byte[] enKey 3-DES加密密钥 * @return byte[] 3-DES加密后的byte[] */ public byte[] Encrypt(byte[] src,byte[] enKey) { byte[] encryptedData = null; try { DESedeKeySpec dks = new DESedeKeySpec(enKey); SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DESede"); SecretKey key = keyFactory.generateSecret(dks); Cipher cipher = Cipher.getInstance("DESede"); cipher.init(Cipher.ENCRYPT_MODE, key); encryptedData = cipher.doFinal(src); } catch(Exception e) { e.printStackTrace(); } return encryptedData; }
代码如下:
/** * 对字符串进行Base64编码 * @param byte[] src 要进行编码的字符 * * @return String 进行编码后的字符串 */ public String getBase64Encode(byte[] src) { String requestValue=""; try{ BASE64Encoder base64en = new BASE64Encoder(); requestValue=base64en.encode(src); //System.out.println(requestValue); } catch(Exception e){ e.printStackTrace(); } return requestValue; }