rc4 implements cipher
[org.ibex.crypto.git] / 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;