TripleDESCBC.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.*;
00034 import javax.crypto.spec.*;
00035
00036 public class TripleDESCBC implements Cipher{
00037 private static final int ivsize=8;
00038 private static final int bsize=24;
00039 private javax.crypto.Cipher cipher;
00040 public int getIVSize(){return ivsize;}
00041 public int getBlockSize(){return bsize;}
00042 public void init(int mode, byte[] key, byte[] iv) throws Exception{
00043 String pad="NoPadding";
00044
00045 byte[] tmp;
00046 if(iv.length>ivsize){
00047 tmp=new byte[ivsize];
00048 System.arraycopy(iv, 0, tmp, 0, tmp.length);
00049 iv=tmp;
00050 }
00051 if(key.length>bsize){
00052 tmp=new byte[bsize];
00053 System.arraycopy(key, 0, tmp, 0, tmp.length);
00054 key=tmp;
00055 }
00056
00057 try{
00058 cipher=javax.crypto.Cipher.getInstance("DESede/CBC/"+pad);
00059
00060
00061
00062
00063
00064
00065
00066
00067 DESedeKeySpec keyspec=new DESedeKeySpec(key);
00068 SecretKeyFactory keyfactory=SecretKeyFactory.getInstance("DESede");
00069 SecretKey _key=keyfactory.generateSecret(keyspec);
00070 cipher.init((mode==ENCRYPT_MODE?
00071 javax.crypto.Cipher.ENCRYPT_MODE:
00072 javax.crypto.Cipher.DECRYPT_MODE),
00073 _key, new IvParameterSpec(iv));
00074 }
00075 catch(Exception e){
00076 cipher=null;
00077 throw e;
00078 }
00079 }
00080 public void update(byte[] foo, int s1, int len, byte[] bar, int s2) throws Exception{
00081 cipher.update(foo, s1, len, bar, s2);
00082 }
00083 public boolean isCBC(){return true; }
00084 }