public interface BlockCipher
| Modifier and Type | Method and Description |
|---|---|
byte[] |
decrypt(byte[] input)
Decrypts an arbitrarily-sized message.
|
byte[] |
encrypt(byte[] input)
Encrypts an arbitrarily-sized message.
|
byte[] encrypt(byte[] input)
input - The message to encrypt.byte[] decrypt(byte[] input)
input - The message to decrypt.