cleanup
[org.ibex.crypto.git] / src / org / ibex / crypto / RC4.java
index be6f821..8891ec7 100644 (file)
@@ -1,7 +1,8 @@
 package org.ibex.crypto;
 
+package org.ibex.crypto;
 
-public class RC4 {
+public class RC4 implements Cipher {
     private final byte[] s = new byte[256];
     private int x,y;