BlowfishCBC.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 package com.jcraft.jsch.jce;
00031
00032 import com.jcraft.jsch.Cipher;
00033 import javax.crypto.spec.*;
00034
00035 public class BlowfishCBC implements Cipher{
00036 private static final int ivsize=8;
00037 private static final int bsize=16;
00038 private javax.crypto.Cipher cipher;
00039 public int getIVSize(){return ivsize;}
00040 public int getBlockSize(){return bsize;}
00041 public void init(int mode, byte[] key, byte[] iv) throws Exception{
00042 String pad="NoPadding";
00043
00044 byte[] tmp;
00045 if(iv.length>ivsize){
00046 tmp=new byte[ivsize];
00047 System.arraycopy(iv, 0, tmp, 0, tmp.length);
00048 iv=tmp;
00049 }
00050 if(key.length>bsize){
00051 tmp=new byte[bsize];
00052 System.arraycopy(key, 0, tmp, 0, tmp.length);
00053 key=tmp;
00054 }
00055 try{
00056 SecretKeySpec skeySpec = new SecretKeySpec(key, "Blowfish");
00057 cipher=javax.crypto.Cipher.getInstance("Blowfish/CBC/"+pad);
00058 cipher.init((mode==ENCRYPT_MODE?
00059 javax.crypto.Cipher.ENCRYPT_MODE:
00060 javax.crypto.Cipher.DECRYPT_MODE),
00061 skeySpec, new IvParameterSpec(iv));
00062 }
00063 catch(Exception e){
00064 throw e;
00065 }
00066 }
00067 public void update(byte[] foo, int s1, int len, byte[] bar, int s2) throws Exception{
00068 cipher.update(foo, s1, len, bar, s2);
00069 }
00070 public boolean isCBC(){return true; }
00071 }