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