HomeSort by relevance Sort by last modified time
    Searched defs:getOutputBlockSize (Results 1 - 6 of 6) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
AsymmetricBlockCipher.java 31 public int getOutputBlockSize();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RSABlindedEngine.java 71 public int getOutputBlockSize()
73 return core.getOutputBlockSize();
RSACoreEngine.java 71 public int getOutputBlockSize()
128 if (output[0] == 0 && output.length > getOutputBlockSize()) // have ended up with an extra zero byte, copy down.
137 if (output.length < getOutputBlockSize()) // have ended up with less bytes than normal, lengthen
139 byte[] tmp = new byte[getOutputBlockSize()];
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
OAEPEncoding.java 109 public int getOutputBlockSize()
111 int baseBlockSize = engine.getOutputBlockSize();
220 if (data.length < engine.getOutputBlockSize())
222 block = new byte[engine.getOutputBlockSize()];
PKCS1Encoding.java 110 public int getOutputBlockSize()
112 int baseBlockSize = engine.getOutputBlockSize();
198 if (block.length < getOutputBlockSize())
226 if (useStrictLength && block.length != engine.getOutputBlockSize())
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 

Completed in 29 milliseconds