java 3des加解密方式_3DESjava加解密

package xx.utils;

import java.io.BufferedOutputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.IOException;

import java.io.InputStream;

import java.io.OutputStream;

import java.security.Key;

import java.security.Provider;

import javax.crypto.Cipher;

import javax.crypto.SecretKeyFactory;

import javax.crypto.spec.DESedeKeySpec;

import javax.crypto.spec.IvParameterSpec;

import org.apache.commons.io.FileUtils;

import org.apache.commons.io.IOUtils;

import org.bouncycastle.util.encoders.Hex;

public class ThreeDesUtil {

private static final byte[] DEFAULT_IVPARAMS = new byte[8];

private static final String DEFAULT_DESKEYALGORITHM = "DESede";

private static final String DEFAULT_CIPHERALGORITHM = DEFAULT_DESKEYALGORITHM + "/" + "CBC" + "/" + "PKCS5Padding";

private static final char[] BCD_LOOKUP = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D',

'E', 'F' };

/**

* 以字节的方式读取文件

*

* @param fileName

*/

public static byte[] readFileByByte(File file) {

InputStream in = null;

long length = file.length();

byte[] bytes = new byte[(int) length];

int offset = 0;

int numRead = 0;

try {

in = new FileInputStream(file);

while (offset < bytes.length && (numRead = in.read(bytes, offset, bytes.length - offset)) >= 0) {

offset += numRead;

}

if (offset < bytes.length) {

throw new IOException("Could not completely read file " + file.getName());

}

} catch (Exception e) {

e.printStackTrace();

} finally {

if (in != null) {

try {

in.close();

} catch (IOException ex) {

ex.printStackTrace();

}

}

}

return bytes;

}

public static byte[] encryptBy3Des(byte[] input, String key) throws Exception {

if (input == null || input.length == 0) {

return new byte[] {};

}

Cipher encryptCipher = getDesCipher(Cipher.ENCRYPT_MODE, key);

return encryptCipher.doFinal(input);

}

public static String encryptBy3DesInHex(byte[] input, String key) throws Exception {

byte[] encrypt = encryptBy3Des(input, key);

return bytesToHexStr(encrypt);

}

private static Cipher getDesCipher(int mode, String key) throws Exception {

Key desKey = getDesKey(key);

Cipher cipher = Cipher.getInstance(getDESCipherAlgorithm(), getProvider());

cipher.init(mode, desKey, new IvParameterSpec(getIVParamsContent()));

return cipher;

}

private static String getDESCipherAlgorithm() {

return DEFAULT_CIPHERALGORITHM;

}

private static Provider getProvider() {

return new org.bouncycastle.jce.provider.BouncyCastleProvider();

}

private static byte[] getIVParamsContent() {

return DEFAULT_IVPARAMS;

}

private static Key getDesKey(String keyStr) throws Exception {

byte input[] = Hex.decode(keyStr);

DESedeKeySpec keySpec = new DESedeKeySpec(input);

SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(getDESKeyAlgorithm(), getProvider());

return keyFactory.generateSecret(keySpec);

}

protected static String getDESKeyAlgorithm() {

return DEFAULT_DESKEYALGORITHM;

}

public static String bytesToHexStr(byte[] paramArrayOfByte) {

StringBuilder localStringBuilder = new StringBuilder(paramArrayOfByte.length * 2 + 1);

for (int i = 0; i < paramArrayOfByte.length; i++) {

localStringBuilder.append(BCD_LOOKUP[(paramArrayOfByte[i] >>> 4 & 0xF)]);

localStringBuilder.append(BCD_LOOKUP[(paramArrayOfByte[i] & 0xF)]);

}

return localStringBuilder.toString();

}

public static OutputStream getBufferedOutputStream(File paramFile) throws Exception {

return new BufferedOutputStream(FileUtils.openOutputStream(paramFile));

}

public static void closeOutputStream(OutputStream paramOutputStream) {

IOUtils.closeQuietly(paramOutputStream);

}

public static boolean persistFile(String paramString, File paramFile) throws Exception {

if (paramString == null || paramString.equals(""))

return false;

OutputStream localOutputStream = getBufferedOutputStream(paramFile);

IOUtils.write(paramString, localOutputStream);

closeOutputStream(localOutputStream);

return true;

}

public static boolean persistFile(byte[] paramArrayOfByte, File paramFile) throws Exception {

if (paramArrayOfByte == null || paramArrayOfByte.length == 0)

return false;

OutputStream localOutputStream = getBufferedOutputStream(paramFile);

IOUtils.write(paramArrayOfByte, localOutputStream);

localOutputStream.close();

return true;

}

public static boolean getEncryptFileInHexBy3Des(File origFile, File encryptFile, String key) throws Exception {

byte[] origFileArray = readFileByByte(origFile);

String hexContent = encryptBy3DesInHex(origFileArray, key);

return persistFile(hexContent, encryptFile);

}

public static String getFileContent(File paramFile) throws Exception {

FileInputStream localFileInputStream = FileUtils.openInputStream(paramFile);

String str = "";

try {

str = IOUtils.toString(localFileInputStream);

} catch (Exception e) {

e.printStackTrace();

} finally {

IOUtils.closeQuietly(localFileInputStream);

}

return str;

}

public static byte[] hexStrToBytes(String paramString) {

byte[] arrayOfByte = new byte[paramString.length() / 2];

int i = 0;

int j = arrayOfByte.length;

while (i < j) {

arrayOfByte[i] = (byte) Integer.parseInt(paramString.substring(2 * i, 2 * i + 2), 16);

i++;

}

return arrayOfByte;

}

public static byte[] decryptBy3DesInHex(String hexContent, String key) throws Exception {

byte[] input = hexStrToBytes(hexContent);

return decryptBy3Des(input, key);

}

public static byte[] decryptBy3Des(byte[] input, String key) throws Exception {

if (input == null || input.length == 0) {

return new byte[] {};

}

Cipher decryptCipher = getDesCipher(Cipher.DECRYPT_MODE, key);

return decryptCipher.doFinal(input);

}

public static boolean getDecryptFileInHexBy3Des(File encryptFile, File origFile, String key) throws Exception {

String hexEncrptContent = getFileContent(encryptFile);

byte[] decryptArray = decryptBy3DesInHex(hexEncrptContent, key);

return persistFile(decryptArray, origFile);

}

public static void main(String[] args) {

// File origFile = new File("e:\\testen\\o\\partner_fund_buy_check_1201179201_20130912.txt");

// File tFile = new File("d:\\partner.zip");

File encryptFile = new File("c:\\ftp\\remote\\27_10005_income_20131009.txt");

String key = "1234567890qwertyuiopasdfghjklmnbvcxz123456123451 ";

try {

//ZipUtil.zip(new File("c:\\ftp\\remote\\27_1200000021_income_20131008.txt"),

// new File(

// "c:\\ftp\\remote\\27_1200000021_income_20131008.txt.zip"));

//new ThreeDesUtil().getEncryptFileInHexBy3Des(encryptFile, encryptFile, key);

// ThreeDesUtil.getDecryptFileInHexBy3Des(encryptFile, encryptFile, key);

// ZipUtil.unzip("c:\\ftp\\remote\\27_10005_income_20131009.zip", "c:\\ftp\\remote");

ThreeDesUtil.getDecryptFileInHexBy3Des(encryptFile, encryptFile, key);

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

System.out.println("end");

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值