public interface Cipher
| Modifier and Type | Interface and Description |
|---|---|
static class |
Cipher.Mode |
| Modifier and Type | Method and Description |
|---|---|
int |
getBlockSize()
Retrieves the block size for this cipher
|
int |
getIVSize()
Retrieves the size of the initialization vector
|
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 getIVSize()
int getBlockSize()
void init(Cipher.Mode mode, byte[] key, byte[] iv) throws Exception
mode - key - iv - ExceptionCopyright © 2008–2015 The Apache Software Foundation. All rights reserved.