ARCFOUR128.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 ARCFOUR128 implements Cipher{
00037 private static final int ivsize=8;
00038 private static final int bsize=16;
00039 private static final int skip=1536;
00040 private javax.crypto.Cipher cipher;
00041 public int getIVSize(){return ivsize;}
00042 public int getBlockSize(){return bsize;}
00043 public void init(int mode, byte[] key, byte[] iv) throws Exception{
00044 byte[] tmp;
00045 if(key.length>bsize){
00046 tmp=new byte[bsize];
00047 System.arraycopy(key, 0, tmp, 0, tmp.length);
00048 key=tmp;
00049 }
00050 try{
00051 cipher=javax.crypto.Cipher.getInstance("RC4");
00052 SecretKeySpec _key = new SecretKeySpec(key, "RC4");
00053 cipher.init((mode==ENCRYPT_MODE?
00054 javax.crypto.Cipher.ENCRYPT_MODE:
00055 javax.crypto.Cipher.DECRYPT_MODE),
00056 _key);
00057 byte[] foo=new byte[1];
00058 for(int i=0; i<skip; i++){
00059 cipher.update(foo, 0, 1, foo, 0);
00060 }
00061 }
00062 catch(Exception e){
00063 cipher=null;
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 false; }
00071 }