Inheritance diagram for Acme.Crypto.Cipher:
Definition at line 43 of file Cipher.java.
Public Member Functions | |
Cipher (int keySize) | |
Constructor. | |
int | keySize () |
Return how big a key is. | |
abstract void | setKey (byte[] key) |
Set the key from a block of bytes. | |
void | setKey (String keyStr) |
Utility routine to set the key from a string. | |
byte[] | makeKey (String keyStr) |
Utility routine to turn a string into a key of the right length. | |
Public Attributes | |
int | keySize |
How big a key is. Keyless ciphers use 0. Variable-length-key ciphers. |