HomeSort by relevance Sort by last modified time
    Searched refs:engineDoFinal (Results 1 - 17 of 17) sorted by null

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherSpiTest.java 56 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
58 return super.engineDoFinal(input, inputOffset, inputLen);
62 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
65 return super.engineDoFinal(input, inputOffset, inputLen, output, outputOffset);
168 bb = cSpi.engineDoFinal(bb1, 1, 2);
169 assertEquals("Incorrect result of engineDoFinal(byte, int, int)", 2,
175 "Incorrect result of engineDoFinal(byte, int, int, byte, int)",
176 2, cSpi.engineDoFinal(bb1, 1, 2, bb2, 0));
294 * Test for <code>engineDoFinal(ByteBuffer, ByteBuffer)</code> method
302 method = "engineDoFinal",
    [all...]
MacSpiTest.java 54 protected byte[] engineDoFinal() {
55 return super.engineDoFinal();
88 protected byte[] engineDoFinal() {
89 return super.engineDoFinal();
127 protected byte[] engineDoFinal() {
128 return super.engineDoFinal();
203 byte[] bb = mSpi.engineDoFinal();
230 bb = mSpi1.engineDoFinal();
231 assertEquals("Incorrect result of engineDoFinal", bb.length, beforeUp);
275 protected byte[] engineDoFinal() {
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
CipherSpi.java 387 protected abstract byte[] engineDoFinal(byte[] input, int inputOffset,
416 protected abstract int engineDoFinal(byte[] input, int inputOffset,
448 protected int engineDoFinal(ByteBuffer input, ByteBuffer output)
469 bOutput = engineDoFinal(bInput, offset + position, limit - position);
474 bOutput = engineDoFinal(bInput, 0, limit - position);
Mac.java 331 return spiImpl.engineDoFinal();
370 byte[] result = spiImpl.engineDoFinal();
397 return spiImpl.engineDoFinal();
MacSpi.java 124 protected abstract byte[] engineDoFinal();
Cipher.java     [all...]
  /libcore/luni/src/main/java/org/apache/harmony/crypto/internal/
NullCipherSpi.java 131 public byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
140 public int engineDoFinal(byte[] input, int inputOffset, int inputLen,
149 public int engineDoFinal(ByteBuffer input, ByteBuffer output)
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyMacSpi.java 68 protected byte[] engineDoFinal() {
MyCipher.java 110 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
116 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen,
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
WrapCipherSpi.java 265 protected byte[] engineDoFinal(
276 protected int engineDoFinal(
302 return engineDoFinal(encoded, 0, encoded.length);
331 encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
JCEStreamCipher.java 345 protected byte[] engineDoFinal(
364 protected int engineDoFinal(
JCEMac.java 150 protected byte[] engineDoFinal()
JCERSACipher.java 434 protected byte[] engineDoFinal(
474 protected int engineDoFinal(
JCEBlockCipher.java 691 protected byte[] engineDoFinal(
730 protected int engineDoFinal(
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 361 milliseconds