ch.ethz.ssh2.crypto.cipher.BlockCipher Maven / Gradle / Ivy
package ch.ethz.ssh2.crypto.cipher;
/**
* BlockCipher.
*
* @author Christian Plattner, [email protected]
* @version $Id: BlockCipher.java,v 1.1 2005/05/26 14:53:27 cplattne Exp $
*/
public interface BlockCipher
{
public void init(boolean forEncryption, byte[] key);
public int getBlockSize();
public void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy