Searched refs:getOutputBlockSize (Results 1 - 7 of 7) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DAsymmetricBlockCipher.java31 public int getOutputBlockSize(); method in interface:AsymmetricBlockCipher
H A DBufferedAsymmetricBlockCipher.java79 public int getOutputBlockSize() method in class:BufferedAsymmetricBlockCipher
81 return cipher.getOutputBlockSize();
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
H A DRSAEngine.java74 public int getOutputBlockSize() method in class:RSAEngine
169 if (output[0] == 0 && output.length > getOutputBlockSize()) // have ended up with an extra zero byte, copy down.
178 if (output.length < getOutputBlockSize()) // have ended up with less bytes than normal, lengthen
180 byte[] tmp = new byte[getOutputBlockSize()];
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/encodings/
H A DPKCS1Encoding.java91 public int getOutputBlockSize() method in class:PKCS1Encoding
93 int baseBlockSize = engine.getOutputBlockSize();
174 if (block.length < getOutputBlockSize())
186 if (useStrictLength && block.length != engine.getOutputBlockSize())
H A DOAEPEncoding.java99 public int getOutputBlockSize() method in class:OAEPEncoding
101 int baseBlockSize = engine.getOutputBlockSize();
210 if (data.length < engine.getOutputBlockSize())
212 block = new byte[engine.getOutputBlockSize()];
H A DISO9796d1Encoding.java86 public int getOutputBlockSize() method in class:ISO9796d1Encoding
88 int baseBlockSize = engine.getOutputBlockSize();
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DJCERSACipher.java131 return cipher.getOutputBlockSize();

Completed in 95 milliseconds