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

1 2 3

  /frameworks/compile/mclinker/include/mcld/LD/
ObjectWriter.h 31 virtual size_t getOutputSize(const Module& pModule) const = 0;
ELFObjectWriter.h 39 size_t getOutputSize(const Module& pModule) const;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
AEADBlockCipher.java 139 public int getOutputSize(int len);
CTSBlockCipher.java 69 public int getOutputSize(
CCMBlockCipher.java 180 public int getOutputSize(int len)
GCMBlockCipher.java 229 public int getOutputSize(int len)
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherSymmetricKeyThread.java 58 outputSize = cip.getOutputSize(input.length);
66 outputSize = cip.getOutputSize(input.length);
CipherPBEThread.java 54 int outputSize = cip.getOutputSize(input.length);
CipherRSAThread.java 44 int outputSize = cip.getOutputSize(input.length);
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
AesGcmTest.java 228 int outputSize = cipher.getOutputSize(test.pt.length);
237 outputSize = cipher.getOutputSize(test.ct.length);
251 int outputSize = cipher.getOutputSize(test.pt.length);
277 int outputSize = cipher.getOutputSize(test.pt.length);
287 outputSize = cipher.getOutputSize(test.ct.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemWriter.java 49 public int getOutputSize(PemObject obj)
  /external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
CipherEncryptBenchmark.java 73 outputSize = cipher.getOutputSize(messageSize);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 76 em.getOutputSize(100);
89 em.getOutputSize(100);
396 em.getOutputSize(10);
403 assertEquals(10, em.getOutputSize(10));
NullCipherTest.java 57 assertEquals("Incorrect OutputSize", 111, c.getOutputSize(111));
CipherTest.java 206 * javax.crypto.Cipher#getOutputSize(int)
213 cipher.getOutputSize(25);
221 int result = cipher.getOutputSize(25);
225 result = cipher.getOutputSize(8);
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
CipherInputStream.java 119 int expectedOutputSize = cipher.getOutputSize(ibuffer.length);
ExemptionMechanism.java 285 public final int getOutputSize(int inputLen) throws IllegalStateException {
416 * {@link #getOutputSize(int) getOutputSize} to determine how big
450 * {@link #getOutputSize(int) getOutputSize} to determine how big
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 282 file, m_pObjLinker->getWriter()->getOutputSize(pModule), output);
295 file, m_pObjLinker->getWriter()->getOutputSize(pModule), output);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
BufferedBlockCipher.java 143 public int getOutputSize(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
PaddedBufferedBlockCipher.java 93 public int getOutputSize(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseBlockCipher.java 232 return cipher.getOutputSize(inputLen);
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
BlockCipherTestBase.java 171 mCipher.getOutputSize(blockSize);
180 int actualOutputSize = mCipher.getOutputSize(input);
183 fail("getOutputSize(" + expectedOutputSize + ") underestimated output size"
192 int actualOutputSize = mCipher.getOutputSize(input);
194 fail("getOutputSize(" + input + ") underestimated output size. min expected: <"
203 // Assert that the output of getOutputSize is not lower than the minimum expected.
217 int actualOutputSize = mCipher.getOutputSize(input);
219 fail("getOutputSize(" + input + ") underestimated output size when buffered == "
237 mCipher.getOutputSize(blockSize);
245 int actualOutputSize = mCipher.getOutputSize(input)
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/
jce.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/
jce.jar 
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/crypto/
CipherTest.java     [all...]

Completed in 431 milliseconds

1 2 3