- 论坛徽章:
- 0
|
铁个完整的把
- /**
- * 3des密码加密解密程序
- *
- * @version $Revision: 1.7 $ $Date: 2007/07/23 08:37:09 $
- * @author helli
- * @since 1.0
- */
- public class DESede {
- static {
- Security.addProvider(new com.sun.crypto.provider.SunJCE());
- }
- public static byte[] encrypt(byte[] msg, byte[] pass) throws Exception {
- byte[] input = msg;
- byte[] keyBytes = pass;
- SecretKeySpec key = new SecretKeySpec(keyBytes, "DES");
- Cipher cipher = Cipher.getInstance("DES/ECB/NOPADDING"); // TripleDES/ECB/NoPadding
- cipher.init(Cipher.ENCRYPT_MODE, key);
- byte[] cipherText = new byte[cipher.getOutputSize(input.length)];
- int ctLength = cipher.update(input, 0, input.length, cipherText, 0);
- ctLength += cipher.doFinal(cipherText, ctLength);
- return cipherText;
- }
- public static byte[] decrypt(byte[] s, byte[] k) throws Exception {
- byte[] input = s;
- byte[] keyBytes = k;
- SecretKeySpec key = new SecretKeySpec(keyBytes, "DES");
- Cipher cipher = Cipher.getInstance("DES/ECB/NOPADDING");
- cipher.init(Cipher.DECRYPT_MODE, key);
- byte[] cipherText = new byte[cipher.getOutputSize(input.length)];
- int ctLength = cipher.update(input, 0, input.length, cipherText, 0);
- ctLength += cipher.doFinal(cipherText, ctLength);
- return cipherText;
- }
- }
复制代码
[ 本帖最后由 都是虫子惹的祸 于 2008-7-22 15:28 编辑 ] |
|