abcdef

com.trilead.ssh2.crypto.cipher
Interface BlockCipher

All Known Implementing Classes:
AES, BlowFish, CBCMode, CTRMode, DES, DESede, NullCipher

public interface BlockCipher

BlockCipher.

Version:
$Id: BlockCipher.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
Author:
Christian Plattner, plattner@trilead.com

Method Summary
 int getBlockSize()
           
 void init(boolean forEncryption, byte[] key)
           
 void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff)
           
 

Method Detail

init

void init(boolean forEncryption,
          byte[] key)

getBlockSize

int getBlockSize()

transformBlock

void transformBlock(byte[] src,
                    int srcoff,
                    byte[] dst,
                    int dstoff)

abcdef

1232432