diff options
author | Kenny Root <kenny@the-b.org> | 2007-11-17 05:58:42 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2007-11-17 05:58:42 +0000 |
commit | dfa41d090260eed63f3d8510571a2f6236a5ff45 (patch) | |
tree | 1eaca308ba9bb913161edf83bfef5f9295784e56 /src/com/trilead/ssh2/crypto/cipher/NullCipher.java | |
parent | edfccaafe3e754ed124afa67465b6044eacd3987 (diff) | |
download | connectbot-dfa41d090260eed63f3d8510571a2f6236a5ff45.tar.gz connectbot-dfa41d090260eed63f3d8510571a2f6236a5ff45.tar.bz2 connectbot-dfa41d090260eed63f3d8510571a2f6236a5ff45.zip |
Initial import.
Diffstat (limited to 'src/com/trilead/ssh2/crypto/cipher/NullCipher.java')
-rw-r--r-- | src/com/trilead/ssh2/crypto/cipher/NullCipher.java | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/com/trilead/ssh2/crypto/cipher/NullCipher.java b/src/com/trilead/ssh2/crypto/cipher/NullCipher.java new file mode 100644 index 0000000..5a03608 --- /dev/null +++ b/src/com/trilead/ssh2/crypto/cipher/NullCipher.java @@ -0,0 +1,35 @@ +package com.trilead.ssh2.crypto.cipher;
+
+/**
+ * NullCipher.
+ *
+ * @author Christian Plattner, plattner@trilead.com
+ * @version $Id: NullCipher.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
+ */
+public class NullCipher implements BlockCipher
+{
+ private int blockSize = 8;
+
+ public NullCipher()
+ {
+ }
+
+ public NullCipher(int blockSize)
+ {
+ this.blockSize = blockSize;
+ }
+
+ public void init(boolean forEncryption, byte[] key)
+ {
+ }
+
+ public int getBlockSize()
+ {
+ return blockSize;
+ }
+
+ public void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff)
+ {
+ System.arraycopy(src, srcoff, dst, dstoff, blockSize);
+ }
+}
|