diff --git a/.eslintrc.js b/.eslintrc.js index 848cda54..5436e689 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -137,7 +137,6 @@ module.exports = { "newline-per-chained-call": "off", "no-alert": "error", "no-array-constructor": "error", - "no-await-in-loop": "error", "no-bitwise": "off", "no-buffer-constructor": "error", "no-caller": "error", @@ -320,6 +319,7 @@ module.exports = { "require-await": 0, "no-multi-assign": 0, "no-underscore-dangle": 0, + "no-await-in-loop": 0, // Custom errors: "no-undef": 2, diff --git a/src/crypto/pkcs1.js b/src/crypto/pkcs1.js index 2d1b7e16..886f2755 100644 --- a/src/crypto/pkcs1.js +++ b/src/crypto/pkcs1.js @@ -63,7 +63,6 @@ hash_headers[11] = [0x30, 0x2d, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, async function getPkcs1Padding(length) { let result = ''; while (result.length < length) { - // eslint-disable-next-line no-await-in-loop const randomBytes = await random.getRandomBytes(length - result.length); for (let i = 0; i < randomBytes.length; i++) { if (randomBytes[i] !== 0) { diff --git a/src/crypto/public_key/dsa.js b/src/crypto/public_key/dsa.js index 3d43e09b..bd5e7b23 100644 --- a/src/crypto/public_key/dsa.js +++ b/src/crypto/public_key/dsa.js @@ -75,7 +75,6 @@ export default { // or s = 0 if signatures are generated properly. while (true) { // See Appendix B here: https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf - // eslint-disable-next-line no-await-in-loop k = await random.getRandomBN(one, q); // returns in [1, q-1] r = gred.redPow(k).fromRed().toRed(redq); // (g**k mod p) mod q if (zero.cmp(r) === 0) { diff --git a/src/crypto/public_key/prime.js b/src/crypto/public_key/prime.js index 4446e06d..6155887b 100644 --- a/src/crypto/public_key/prime.js +++ b/src/crypto/public_key/prime.js @@ -59,7 +59,6 @@ async function randomProbablePrime(bits, e, k) { n = n.mod(min.shln(1)).iadd(min); i = n.mod(thirty).toNumber(); } - // eslint-disable-next-line no-await-in-loop } while (!await isProbablePrime(n, e, k)); return n; } @@ -248,7 +247,6 @@ async function millerRabin(n, k, rand) { const d = n.shrn(s); for (; k > 0; k--) { - // eslint-disable-next-line no-await-in-loop const a = rand ? rand() : await random.getRandomBN(new BN(2), n1); let x = a.toRed(red).redPow(d); diff --git a/src/key.js b/src/key.js index e4da1ce1..661c8f13 100644 --- a/src/key.js +++ b/src/key.js @@ -296,7 +296,6 @@ Key.prototype.getSigningKey = async function (keyId=null, date=new Date(), userI const subKeys = this.subKeys.slice().sort((a, b) => b.keyPacket.created - a.keyPacket.created); for (let i = 0; i < subKeys.length; i++) { if (!keyId || subKeys[i].getKeyId().equals(keyId)) { - // eslint-disable-next-line no-await-in-loop if (await subKeys[i].verify(primaryKey, date) === enums.keyStatus.valid) { const bindingSignature = getLatestSignature(subKeys[i].bindingSignatures, date); if (isValidSigningKeyPacket(subKeys[i].keyPacket, bindingSignature, date)) { @@ -342,7 +341,6 @@ Key.prototype.getEncryptionKey = async function(keyId, date=new Date(), userId={ const subKeys = this.subKeys.slice().sort((a, b) => b.keyPacket.created - a.keyPacket.created); for (let i = 0; i < subKeys.length; i++) { if (!keyId || subKeys[i].getKeyId().equals(keyId)) { - // eslint-disable-next-line no-await-in-loop if (await subKeys[i].verify(primaryKey, date) === enums.keyStatus.valid) { const bindingSignature = getLatestSignature(subKeys[i].bindingSignatures, date); if (isValidEncryptionKeyPacket(subKeys[i].keyPacket, bindingSignature, date)) { @@ -541,11 +539,9 @@ Key.prototype.getPrimaryUser = async function(date=new Date(), userId={}) { const primaryKey = this.keyPacket; const dataToVerify = { userId: user.userId, key: primaryKey }; // skip if certificates is invalid, revoked, or expired - // eslint-disable-next-line no-await-in-loop if (!(cert.verified || await cert.verify(primaryKey, dataToVerify))) { return null; } - // eslint-disable-next-line no-await-in-loop if (cert.revoked || await user.isRevoked(primaryKey, cert, null, date)) { return null; } diff --git a/src/keyring/keyring.js b/src/keyring/keyring.js index adedca8f..adad4d73 100644 --- a/src/keyring/keyring.js +++ b/src/keyring/keyring.js @@ -192,7 +192,6 @@ KeyArray.prototype.importKey = async function (armored) { const keyidHex = key.getKeyId().toHex(); const keyFound = this.getForId(keyidHex); if (keyFound) { - // eslint-disable-next-line no-await-in-loop await keyFound.update(key); } else { this.push(key); diff --git a/src/message.js b/src/message.js index 074fe5a5..aa4acbf3 100644 --- a/src/message.js +++ b/src/message.js @@ -118,7 +118,6 @@ Message.prototype.decrypt = async function(privateKeys, passwords, sessionKeys) } try { - // eslint-disable-next-line no-await-in-loop await symEncryptedPacket.decrypt(keyObjs[i].algorithm, keyObjs[i].data); break; } catch (e) { diff --git a/src/packet/packetlist.js b/src/packet/packetlist.js index afffd8d2..27d38698 100644 --- a/src/packet/packetlist.js +++ b/src/packet/packetlist.js @@ -197,7 +197,6 @@ List.prototype.map = function (callback) { */ List.prototype.some = async function (callback) { for (let i = 0; i < this.length; i++) { - // eslint-disable-next-line no-await-in-loop if (await callback(this[i], i, this)) { return true; }