| org.apache.harmony.crypto.tests.support.MyCipher
MyCipher | public class MyCipher extends CipherSpi (Code) | | Cipher implementation for testing
|
Method Summary | |
protected byte[] | engineDoFinal(byte[] input, int inputOffset, int inputLen) | protected int | engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) | protected int | engineGetBlockSize() | protected byte[] | engineGetIV() | protected int | engineGetOutputSize(int inputLen) | protected AlgorithmParameters | engineGetParameters() | protected void | engineInit(int opmode, Key key, SecureRandom random) | protected void | engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random) | protected void | engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) | protected void | engineSetMode(String mode) | protected void | engineSetPadding(String padding) | protected byte[] | engineUpdate(byte[] input, int inputOffset, int inputLen) | protected int | engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) |
MyCipher | public MyCipher()(Code) | | |
engineDoFinal | protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) throws IllegalBlockSizeException, BadPaddingException(Code) | | |
engineDoFinal | protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws ShortBufferException, IllegalBlockSizeException, BadPaddingException(Code) | | |
engineGetBlockSize | protected int engineGetBlockSize()(Code) | | |
engineGetIV | protected byte[] engineGetIV()(Code) | | |
engineGetOutputSize | protected int engineGetOutputSize(int inputLen)(Code) | | |
engineSetPadding | protected void engineSetPadding(String padding) throws NoSuchPaddingException(Code) | | |
engineUpdate | protected byte[] engineUpdate(byte[] input, int inputOffset, int inputLen)(Code) | | |
engineUpdate | protected int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) throws ShortBufferException(Code) | | |
|
|