All Packages Class Hierarchy This Package Previous Next Index
public abstract int plainBlockSize()
public abstract int cipherBlockSize()
public abstract void encrypt(byte source[],
int i,
byte dest[],
int j)
source starting at offset i and
ciphertext is written to dest, starting at
offset j.
The amount of data read and written will match the values returned
by plainBlockSize() and cipherBlockSize().
public abstract void decrypt(byte source[],
int i,
byte dest[],
int j)
source starting at offset i and
plaintext is written to dest, starting at
offset j.
The amount of data read and written will match the values returned
by cipherBlockSize() and plainBlockSize().
All Packages Class Hierarchy This Package Previous Next Index