Inheritance diagram for Acme.Crypto.IdeaCipher:
Definition at line 57 of file IdeaCipher.java.
Public Member Functions | |
IdeaCipher (String keyStr) | |
IdeaCipher (byte[] key) | |
void | setKey (byte[] key) |
Set the key. | |
void | encrypt (byte[] clearText, int clearOff, byte[] cipherText, int cipherOff) |
Encrypt a block of eight bytes. | |
void | decrypt (byte[] cipherText, int cipherOff, byte[] clearText, int clearOff) |
Decrypt a block of eight bytes. | |
Static Public Member Functions | |
static void | main (String[] args) |
Test routine. |