From 48ded2421114c4c87ef3f8005c9f793a5d077cbd Mon Sep 17 00:00:00 2001 From: Mike Lockwood Date: Tue, 10 Jan 2012 14:24:22 -0800 Subject: ganymed-ssh2-build251beta1 Signed-off-by: Mike Lockwood --- .../ch/ethz/ssh2/crypto/cipher/NullCipher.java | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/main/java/ch/ethz/ssh2/crypto/cipher/NullCipher.java (limited to 'src/main/java/ch/ethz/ssh2/crypto/cipher/NullCipher.java') diff --git a/src/main/java/ch/ethz/ssh2/crypto/cipher/NullCipher.java b/src/main/java/ch/ethz/ssh2/crypto/cipher/NullCipher.java new file mode 100644 index 0000000..14cc319 --- /dev/null +++ b/src/main/java/ch/ethz/ssh2/crypto/cipher/NullCipher.java @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. + * Please refer to the LICENSE.txt for licensing details. + */ +package ch.ethz.ssh2.crypto.cipher; + +/** + * NullCipher. + * + * @author Christian Plattner + * @version 2.50, 03/15/10 + */ +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); + } +} -- cgit v1.2.3