Blowfish算法

/***/ /**
*Copyright2008,CSSWEBallrightsreserved.
*
@authorhujun
*@dateMar25,2008
*@fileBlowfish.java
*
@version1.1
*
*/

package net.cssweb.common.encrypt;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;

import java.io.IOException;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.CipherOutputStream;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;

import sun.misc.BASE64Decoder;

public class Blowfish ... {

publicStringdecrypt(Stringinput)throwsNoSuchAlgorithmException,NoSuchPaddingException,InvalidKeyException,InvalidAlgorithmParameterException,IOException,IllegalBlockSizeException,BadPaddingException
...{
finalbyte[]k=
...{
0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,
0x09}
;
//System.out.println("key="+k);
SecretKeySpeckey=newSecretKeySpec(k,"Blowfish");

finalbyte[]ivBytes=...{0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08};

//Stringiv="00000000";
IvParameterSpecspec=newIvParameterSpec(ivBytes);

Ciphercipher
=Cipher.getInstance("Blowfish/CBC/PKCS5Padding");
//Ciphercipher=Cipher.getInstance("Blowfish/CBC/NoPadding");

cipher.init(Cipher.DECRYPT_MODE,key,spec);
//cipher.init(Cipher.DECRYPT_MODE,key);
//System.out.println("blocksize="+cipher.getBlockSize());
//System.out.println("iv="+cipher.getIV());

BASE64Decoderdecoder
=newBASE64Decoder();
byte[]data=decoder.decodeBuffer(input);

//cipher.update
//data=cipher.update(data,0,data.length);
//System.out.println("长度为"+data.length);
byte[]decryptData=cipher.doFinal(data,0,data.length);
//cipher.
//System.arraycopy("12345678".getBytes()decryptData,0,,0,8);

//Strings=newString(decryptData);
/***//**
for(inti=0;i<decryptData.length;i++)
System.out.println(decryptData[i]);
*
*/


//System.out.println("解密数据="+decryptData.toString());
//System.out.println("解密数据="+newString(decryptData));

returnnewString(decryptData);
}


publicStringencrypt(Stringinput)throwsNoSuchAlgorithmException,NoSuchPaddingException,InvalidKeyException,InvalidAlgorithmParameterException,IOException
...{
finalbyte[]k=
...{
0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,
0x09}
;
System.out.println(
"key="+k);
SecretKeySpeckey
=newSecretKeySpec(k,"Blowfish");

finalbyte[]ivBytes=...{0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08};

//Stringiv="00000000";
IvParameterSpecspec=newIvParameterSpec(ivBytes);

Ciphercipher
=Cipher.getInstance("Blowfish/CBC/PKCS5Padding");
//Ciphercipher=Cipher.getInstance("Blowfish/CBC/NoPadding");

cipher.init(Cipher.ENCRYPT_MODE,key,spec);

ByteArrayOutputStreambos
=newByteArrayOutputStream();
ByteArrayInputStreambis
=newByteArrayInputStream(input.getBytes());
CipherOutputStreamcos
=newCipherOutputStream(bos,cipher);
inttheByte=0;
while((theByte=bis.read())!=-1)
...{
cos.write(theByte);
}

cos.close();
bis.close();
//System.out.println("加密成功");
returnnewsun.misc.BASE64Encoder().encode(bos.toByteArray());
}

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值