Inheritance diagram for Acme.Crypto.StreamCipher:
Definition at line 44 of file StreamCipher.java.
Public Member Functions | |
StreamCipher (int keySize) | |
Constructor. | |
abstract byte | encrypt (byte clearText) |
Encrypt a byte. | |
abstract byte | decrypt (byte cipherText) |
Decrypt a byte. | |
void | encrypt (byte[] clearText, byte[] cipherText) |
Encrypt an array of bytes. | |
void | decrypt (byte[] cipherText, byte[] clearText) |
Decrypt an array of bytes. | |
void | encrypt (byte[] clearText, int clearOff, byte[] cipherText, int cipherOff, int len) |
Encrypt some bytes. | |
void | decrypt (byte[] cipherText, int cipherOff, byte[] clearText, int clearOff, int len) |
Decrypt some bytes. |