Closed danglotb closed 8 years ago
__L67 : ("RSACoreEngine.java:94", 67, "Numerical")
else if ((PerturbationEngine.pint(__L67, inLen) == (getInputBlockSize() + 1) && !forEncryption) throw new DataLengthException("input too large for RSA cipher.");
In case of **+1** perturbation, the condition
inLen == (getInputBlockSize() + 1)
is true, and throw an exception. For the other magnitude, the condition is false.
49% of success when +1, and 100% for other magnitude.