| ch.ethz.ssh2.crypto.cipher.BlockCipher
All known Subclasses: ch.ethz.ssh2.crypto.cipher.CBCMode, ch.ethz.ssh2.crypto.cipher.DES, ch.ethz.ssh2.crypto.cipher.BlowFish, ch.ethz.ssh2.crypto.cipher.CTRMode, ch.ethz.ssh2.crypto.cipher.NullCipher, ch.ethz.ssh2.crypto.cipher.AES,
BlockCipher | public interface BlockCipher (Code) | | BlockCipher.
author: Christian Plattner, plattner@inf.ethz.ch version: $Id: BlockCipher.java,v 1.1 2005/05/26 14:53:27 cplattne Exp $ |
Method Summary | |
public int | getBlockSize() | public void | init(boolean forEncryption, byte[] key) | public void | transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff) |
getBlockSize | public int getBlockSize()(Code) | | |
init | public void init(boolean forEncryption, byte[] key)(Code) | | |
transformBlock | public void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff)(Code) | | |
|
|