cipher.java
[org.ibex.crypto.git] / src / org / ibex / crypto / Cipher.java
diff --git a/src/org/ibex/crypto/Cipher.java b/src/org/ibex/crypto/Cipher.java
new file mode 100644 (file)
index 0000000..8757e32
--- /dev/null
@@ -0,0 +1,5 @@
+package org.ibex.crypto;
+
+public interface Cipher {
+    public void process(byte[] in, int inp, byte[] out, int outp, int len);
+}