bugfix in openpgp_crypto_getRandomBigIntegerInRange() using compareTo() from BigInteger library
This commit is contained in:
parent
08cb01e932
commit
1c9aa9b781
|
@ -447,7 +447,7 @@ function openpgp_crypto_getRandomBigInteger(bits) {
|
|||
}
|
||||
|
||||
function openpgp_crypto_getRandomBigIntegerInRange(min, max) {
|
||||
if (max < min)
|
||||
if (max.compareTo(min) <= 0)
|
||||
return;
|
||||
var range = max.subtract(min);
|
||||
var r = openpgp_crypto_getRandomBigInteger(range.bitLength());
|
||||
|
|
Loading…
Reference in New Issue
Block a user