Inheritance diagram for Acme.Crypto.NullCipher:
Definition at line 47 of file NullCipher.java.
Public Member Functions | |
NullCipher () | |
Constructor. | |
void | setKey (byte[] key) |
Set the key. Null routine to avoid compilation error. | |
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. |