| java.lang.Object javax.crypto.CipherSpi
CipherSpi | abstract public class CipherSpi (Code) | | |
Method Summary | |
abstract protected byte[] | engineDoFinal(byte[] input, int inputOffset, int inputLen) | abstract protected int | engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) | protected int | engineDoFinal(ByteBuffer input, ByteBuffer output) | abstract protected int | engineGetBlockSize() | abstract protected byte[] | engineGetIV() | protected int | engineGetKeySize(Key key) | abstract protected int | engineGetOutputSize(int inputLen) | abstract protected AlgorithmParameters | engineGetParameters() | abstract protected void | engineInit(int opmode, Key key, SecureRandom random) | abstract protected void | engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) | abstract protected void | engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) | abstract protected void | engineSetMode(String mode) | abstract protected void | engineSetPadding(String padding) | protected Key | engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType) | abstract protected byte[] | engineUpdate(byte[] input, int inputOffset, int inputLen) | abstract protected int | engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) | protected int | engineUpdate(ByteBuffer input, ByteBuffer output) | protected byte[] | engineWrap(Key key) |
CipherSpi | public CipherSpi()(Code) | | |
engineGetBlockSize | abstract protected int engineGetBlockSize()(Code) | | |
engineGetIV | abstract protected byte[] engineGetIV()(Code) | | |
engineGetOutputSize | abstract protected int engineGetOutputSize(int inputLen)(Code) | | |
engineUpdate | abstract protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen)(Code) | | |
engineUpdate | abstract protected int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws ShortBufferException(Code) | | |
|
|