rc4 implements cipher
authorbrian <brian@brianweb.net>
Wed, 28 Jul 2004 12:02:03 +0000 (12:02 +0000)
committerbrian <brian@brianweb.net>
Wed, 28 Jul 2004 12:02:03 +0000 (12:02 +0000)
darcs-hash:20040728120203-24bed-13af864bf37a3ade2f337e3ac77dc8e8db857962.gz

src/org/ibex/crypto/RC4.java

index 6efb75d..907ebcc 100644 (file)
@@ -5,7 +5,7 @@
 package org.ibex.crypto;
 
 
-public class RC4 {
+public class RC4 implements Cipher {
     private final byte[] s = new byte[256];
     private int x,y;