Searched refs:getInputBlockSize (Results 1 – 6 of 6) sorted by relevance
104 return cipher.getInputBlockSize(); in engineGetBlockSize()419 if (bOut.size() > cipher.getInputBlockSize() + 1) in engineUpdate()426 if (bOut.size() > cipher.getInputBlockSize()) in engineUpdate()446 if (bOut.size() > cipher.getInputBlockSize() + 1) in engineUpdate()453 if (bOut.size() > cipher.getInputBlockSize()) in engineUpdate()475 if (bOut.size() > cipher.getInputBlockSize() + 1) in engineDoFinal()482 if (bOut.size() > cipher.getInputBlockSize()) in engineDoFinal()506 if (bOut.size() > cipher.getInputBlockSize() + 1) in engineDoFinal()513 if (bOut.size() > cipher.getInputBlockSize()) in engineDoFinal()
50 public int getInputBlockSize() in getInputBlockSize() method in RSACoreEngine90 if (inLen > (getInputBlockSize() + 1)) in convertInput()94 else if (inLen == (getInputBlockSize() + 1) && !forEncryption) in convertInput()
59 public int getInputBlockSize() in getInputBlockSize() method in RSABlindedEngine61 return core.getInputBlockSize(); in getInputBlockSize()
101 public int getInputBlockSize() in getInputBlockSize() method in OAEPEncoding103 int baseBlockSize = engine.getInputBlockSize(); in getInputBlockSize()151 if (inLen > getInputBlockSize()) in encodeBlock()156 byte[] block = new byte[getInputBlockSize() + 1 + 2 * defHash.length]; in encodeBlock()
160 public int getInputBlockSize() in getInputBlockSize() method in PKCS1Encoding162 int baseBlockSize = engine.getInputBlockSize(); in getInputBlockSize()210 if (inLen > getInputBlockSize()) in encodeBlock()215 byte[] block = new byte[engine.getInputBlockSize()]; in encodeBlock()
24 public int getInputBlockSize(); in getInputBlockSize() method