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

1 2 3

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacSpiTest.java 47 protected byte[] engineDoFinal() {
48 return super.engineDoFinal();
81 protected byte[] engineDoFinal() {
82 return super.engineDoFinal();
120 protected byte[] engineDoFinal() {
121 return super.engineDoFinal();
176 byte[] bb = mSpi.engineDoFinal();
203 bb = mSpi1.engineDoFinal();
204 assertEquals("Incorrect result of engineDoFinal", bb.length, beforeUp);
248 protected byte[] engineDoFinal() {
    [all...]
CipherSpiTest.java 52 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
54 return super.engineDoFinal(input, inputOffset, inputLen);
58 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
61 return super.engineDoFinal(input, inputOffset, inputLen, output, outputOffset);
158 bb = cSpi.engineDoFinal(bb1, 1, 2);
159 assertEquals("Incorrect result of engineDoFinal(byte, int, int)", 2,
165 "Incorrect result of engineDoFinal(byte, int, int, byte, int)",
166 2, cSpi.engineDoFinal(bb1, 1, 2, bb2, 0));
261 * Test for <code>engineDoFinal(ByteBuffer, ByteBuffer)</code> method
277 cSpi.engineDoFinal(bbNull, bb1)
    [all...]
MockMacSpi.java 74 protected byte[] engineDoFinal() {
CipherOutputStream1Test.java 282 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
284 // Just call the other overriding for engineDoFinal.
286 engineDoFinal(input, inputOffset, inputLen, new byte[10], 0);
294 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
  /libcore/ojluni/src/main/java/javax/crypto/
NullCipherSpi.java 95 protected byte[] engineDoFinal(byte[] input, int inputOffset,
101 protected int engineDoFinal(byte[] input, int inputOffset,
CipherSpi.java 609 protected abstract byte[] engineDoFinal(byte[] input, int inputOffset,
666 protected abstract int engineDoFinal(byte[] input, int inputOffset,
727 protected int engineDoFinal(ByteBuffer input, ByteBuffer output)
742 * engineUpdate() and engineDoFinal().
    [all...]
MacSpi.java 130 protected abstract byte[] engineDoFinal();
Cipher.java     [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyMacSpi.java 68 protected byte[] engineDoFinal() {
MyCipher.java 111 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
117 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 273 protected byte[] engineDoFinal(
284 protected int engineDoFinal(
310 return engineDoFinal(encoded, 0, encoded.length);
334 encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
BaseStreamCipher.java 365 protected byte[] engineDoFinal(
384 protected int engineDoFinal(
BaseMac.java 269 protected byte[] engineDoFinal()
  /libcore/luni/src/test/java/libcore/javax/crypto/
MockMacSpi.java 83 protected byte[] engineDoFinal() {
MockCipherSpi.java 265 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
271 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java 124 return engineDoFinal(encoded, 0, encoded.length);
148 encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreCipherSpiBase.java 78 * {@code engineInit} and is invalidated when {@code engineDoFinal} succeeds and on some error
90 * {@code engineDoFinal}. Once such an exception is encountered, {@code engineUpdate} and
91 * {@code engineDoFinal} start ignoring input data.
487 protected final byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
528 protected final int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
531 byte[] outputCopy = engineDoFinal(input, inputOffset, inputLen);
545 protected final int engineDoFinal(ByteBuffer input, ByteBuffer output)
558 engineDoFinal(
564 outputArray = engineDoFinal(inputArray, 0, inputSize);
656 return engineDoFinal(encoded, 0, encoded.length)
    [all...]
AndroidKeyStoreHmacSpi.java 75 // Fields below are populated by engineInit and should be preserved after engineDoFinal.
78 // Fields below are reset when engineDoFinal succeeds.
227 protected byte[] engineDoFinal() {
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
sunjce_provider.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
sunjce_provider.jar 
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLMac.java 148 protected byte[] engineDoFinal() {
OpenSSLCipherRSA.java 269 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
305 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
308 byte[] b = engineDoFinal(input, inputOffset, inputLen);
324 return engineDoFinal(encoded, 0, encoded.length);
336 byte[] encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/
jce.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/
jce.jar 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java 462 protected byte[] engineDoFinal(
491 protected int engineDoFinal(

Completed in 1865 milliseconds

1 2 3