Blowfish算法

/**
 *Copyright 2008,  CSSWEB  all rights reserved.
 *
@author hujun
 *@date Mar 25, 2008
 *@file Blowfish.java 
 *
@version 1.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  {

    
public String decrypt(String input) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, InvalidAlgorithmParameterException, IOException, IllegalBlockSizeException, BadPaddingException
    
{
        
final byte[] k =
        
{
                
0x000x010x020x030x040x050x060x070x08,
            
0x09 }
;
        
//System.out.println("key = " + k);
        SecretKeySpec key = new SecretKeySpec(k, "Blowfish");
        
        
final byte[] ivBytes = {0x010x020x030x040x050x060x070x08};

        
//String iv = "00000000";
        IvParameterSpec spec = new IvParameterSpec(ivBytes);

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

        cipher.init(Cipher.DECRYPT_MODE, key, spec);
        
//cipher.init(Cipher.DECRYPT_MODE, key);
        
//System.out.println("block size = " + cipher.getBlockSize());
        
//System.out.println("iv = " + cipher.getIV());
        
        BASE64Decoder decoder 
= new BASE64Decoder();
        
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);
        
        
//String s = new String(decryptData);
        /**
        for (int i=0; i<decryptData.length; i++)
            System.out.println(decryptData[i]);
            *
*/

        
        
//System.out.println("解密数据=" + decryptData.toString());
        
//System.out.println("解密数据=" + new String(decryptData));
        
        
return new String(decryptData);
    }

    
    
public String encrypt(String input) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, InvalidAlgorithmParameterException, IOException
    
{
        
final byte[] k =
        
{
                
0x000x010x020x030x040x050x060x070x08,
            
0x09 }
;
        System.out.println(
"key = " + k);
        SecretKeySpec key 
= new SecretKeySpec(k, "Blowfish");
        
        
final byte[] ivBytes = {0x010x020x030x040x050x060x070x08};

        
//String iv = "00000000";
        IvParameterSpec spec = new IvParameterSpec(ivBytes);

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

        cipher.init(Cipher.ENCRYPT_MODE, key, spec);
        
        ByteArrayOutputStream bos 
= new ByteArrayOutputStream();
        ByteArrayInputStream bis 
= new ByteArrayInputStream(input.getBytes());
        CipherOutputStream cos 
= new CipherOutputStream(bos, cipher);
        
int theByte = 0;
        
while ((theByte = bis.read()) != -1)
        
{
            cos.write(theByte);
        }

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

}

 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值