Inherits CipherSpi.
|
|
void | engineSetMode (String smode) throws NoSuchAlgorithmException |
| |
|
void | engineSetPadding (String spadding) throws NoSuchPaddingException |
| |
|
int | engineGetBlockSize () |
| |
|
AlgorithmParameters | engineGetParameters () |
| |
|
byte[] | engineGetIV () |
| |
|
int | engineGetOutputSize (int inputLen) |
| |
|
void | engineInit (int opmode, Key inkey, AlgorithmParameterSpec param, SecureRandom rng) throws InvalidKeyException, InvalidAlgorithmParameterException |
| |
|
void | engineInit (int opmode, Key key, AlgorithmParameters param, SecureRandom rng) throws InvalidKeyException, InvalidAlgorithmParameterException |
| |
|
void | engineInit (int opmode, Key key, SecureRandom rng) throws InvalidKeyException |
| |
|
byte[] | engineUpdate (byte[] input, int inputOffset, int inputLen) |
| |
|
int | engineUpdate (byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws ShortBufferException |
| |
|
byte[] | engineDoFinal (byte[] input, int inputOffset, int inputLen) throws IllegalBlockSizeException, BadPaddingException |
| |
|
int | engineDoFinal (byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws IllegalBlockSizeException, BadPaddingException, ShortBufferException |
| |
|
byte[] | setFipsUsageWrap (CryptoServerCXI.Key keyToBeWrapped, int type) throws IOException, CryptoServerException |
| |
|
byte[] | engineWrap (Key inkey) throws IllegalBlockSizeException, InvalidKeyException |
| |
|
CryptoServerCXI.Key | setFipsUsageUnwrap (int flags, int type, CryptoServerCXI.KeyAttributes keyTemplate, byte[] keyBlob) throws IOException, CryptoServerException |
| |
|
Key | engineUnwrap (byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType) throws InvalidKeyException, NoSuchAlgorithmException |
| |
|
void | engineUpdateAAD (byte[] src) |
| |
|
void | engineUpdateAAD (byte[] src, int offset, int len) |
| |
|
void | updateAAD (ByteBuffer src) |
| |