Searched refs:outputOffset (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/keystore/src/android/keystore/cts/ |
D | BlockCipherTestBase.java | 1593 int outputOffset) throws ShortBufferException, IllegalBlockSizeException, in doFinal() argument 1595 return mCipher.doFinal(input, inputOffset, inputLen, output, outputOffset); in doFinal() 1598 protected int doFinal(byte[] output, int outputOffset) throws IllegalBlockSizeException, in doFinal() argument 1600 return mCipher.doFinal(output, outputOffset); in doFinal() 1656 protected int update(byte[] input, int offset, int len, byte[] output, int outputOffset) in update() argument 1658 int outputLen = mCipher.update(input, offset, len, output, outputOffset); in update()
|