Searched refs:getOutputSize (Results 1 - 18 of 18) sorted by relevance

/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DConnectionState.java71 return encCipher.getOutputSize(1+hash_size); // 1 byte for data
79 return encCipher.getOutputSize(content_size+hash_size);
90 return decCipher.getOutputSize(generic_cipher_size)-hash_size;
H A DConnectionStateSSLv3.java265 byte[] rez = new byte[encCipher.getOutputSize(res.length)];
H A DConnectionStateTLS.java273 byte[] rez = new byte[encCipher.getOutputSize(res.length)];
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
H A DCipherSymmetricKeyThread.java58 outputSize = cip.getOutputSize(input.length);
66 outputSize = cip.getOutputSize(input.length);
H A DCipherPBEThread.java54 int outputSize = cip.getOutputSize(input.length);
H A DCipherRSAThread.java44 int outputSize = cip.getOutputSize(input.length);
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DPaddedBlockCipher.java42 public int getOutputSize( method in class:PaddedBlockCipher
H A DCTSBlockCipher.java68 public int getOutputSize( method in class:CTSBlockCipher
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
H A DIESEngine.java132 byte[] tmp = new byte[cipher.getOutputSize(inLen)];
203 c_text_length = cipher.getOutputSize(inLen);
/dalvik/libcore/crypto/src/main/java/javax/crypto/
H A DExemptionMechanism.java224 public final int getOutputSize(int inputLen) throws IllegalStateException { method in class:ExemptionMechanism
H A DCipher.java393 public final int getOutputSize(int inputLen) { method in class:Cipher
906 * {@link Cipher#getOutputSize getOutputSize} to check for the size of the
939 * {@link Cipher#getOutputSize getOutputSize} to check for the size of the
999 * {@link Cipher#getOutputSize getOutputSize} to check for the size of the
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DExemptionMechanismTest.java92 em.getOutputSize(100);
105 em.getOutputSize(100);
520 method = "getOutputSize",
544 em.getOutputSize(10);
551 assertEquals(10, em.getOutputSize(10));
H A DNullCipherTest.java85 method = "getOutputSize",
89 assertEquals("Incorrect OutputSize", 111, c.getOutputSize(111));
H A DCipherTest.java322 * @tests javax.crypto.Cipher#getOutputSize(int)
328 method = "getOutputSize",
345 cipher.getOutputSize(25);
354 int result = cipher.getOutputSize(25);
358 result = cipher.getOutputSize(8);
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DBufferedBlockCipher.java136 public int getOutputSize( method in class:BufferedBlockCipher
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/paddings/
H A DPaddedBufferedBlockCipher.java92 public int getOutputSize( method in class:PaddedBufferedBlockCipher
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJCEBlockCipher.java121 return cipher.getOutputSize(inputLen);
677 int outputLen = cipher.getOutputSize(inputLen);
H A DBrokenJCEBlockCipher.java113 return cipher.getOutputSize(inputLen);

Completed in 151 milliseconds