Inheritance diagram for Acme.Crypto.BlockCipher:
Definition at line 45 of file BlockCipher.java.
Public Member Functions | |
BlockCipher (int keySize, int blockSize) | |
Constructor. | |
int | blockSize () |
Return how big a block is. | |
abstract void | encrypt (byte[] clearText, int clearOff, byte[] cipherText, int cipherOff) |
Encrypt a block of bytes. | |
abstract void | decrypt (byte[] cipherText, int cipherOff, byte[] clearText, int clearOff) |
Decrypt a block of bytes. | |
void | encrypt (byte[] clearText, byte[] cipherText) |
Encrypt a block of bytes. | |
void | decrypt (byte[] cipherText, byte[] clearText) |
Decrypt a block of bytes. | |
Public Attributes | |
int | blockSize |
How big a block is. |