00001 /* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */ 00002 /* 00003 Copyright (c) 2008-2011 ymnk, JCraft,Inc. All rights reserved. 00004 00005 Redistribution and use in source and binary forms, with or without 00006 modification, are permitted provided that the following conditions are met: 00007 00008 1. Redistributions of source code must retain the above copyright notice, 00009 this list of conditions and the following disclaimer. 00010 00011 2. Redistributions in binary form must reproduce the above copyright 00012 notice, this list of conditions and the following disclaimer in 00013 the documentation and/or other materials provided with the distribution. 00014 00015 3. The names of the authors may not be used to endorse or promote products 00016 derived from this software without specific prior written permission. 00017 00018 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, 00019 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 00020 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, 00021 INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, 00022 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00023 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 00024 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00025 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00026 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00027 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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 ARCFOUR implements Cipher{ 00037 private static final int ivsize=8; 00038 private static final int bsize=16; 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 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 00051 try{ 00052 cipher=javax.crypto.Cipher.getInstance("RC4"); 00053 SecretKeySpec _key = new SecretKeySpec(key, "RC4"); 00054 cipher.init((mode==ENCRYPT_MODE? 00055 javax.crypto.Cipher.ENCRYPT_MODE: 00056 javax.crypto.Cipher.DECRYPT_MODE), 00057 _key); 00058 } 00059 catch(Exception e){ 00060 cipher=null; 00061 throw e; 00062 } 00063 } 00064 public void update(byte[] foo, int s1, int len, byte[] bar, int s2) throws Exception{ 00065 cipher.update(foo, s1, len, bar, s2); 00066 } 00067 public boolean isCBC(){return false; } 00068 }