public interface Cipher
| Modifier and Type | Interface and Description |
|---|---|
static class |
Cipher.Mode |
| Modifier and Type | Method and Description |
|---|---|
int |
getBlockSize() |
int |
getIVSize() |
void |
init(Cipher.Mode mode,
byte[] key,
byte[] iv)
Initialize the cipher for encryption or decryption with the given private key and initialization vector
|
void |
update(byte[] input,
int inputOffset,
int inputLen)
Performs in-place encryption or decryption on the given data.
|
int getBlockSize()
int getIVSize()
void init(Cipher.Mode mode, byte[] key, byte[] iv)
mode - whether this instance wil encrypt or decryptkey - the key for the cipheriv - initialization vectorvoid update(byte[] input,
int inputOffset,
int inputLen)
input - the subjectinputOffset - offset at which to startinputLen - number of bytes starting at inputOffsetCopyright © 2009–2014. All rights reserved.