Style fixes and new style rules for eslint (#919)

This commit is contained in:
Ilya Chesnokov 2019-06-28 15:33:19 +02:00 committed by Daniel Huigens
parent 1bd5689d75
commit 6d626ea70c
12 changed files with 63 additions and 57 deletions

View File

@ -244,7 +244,7 @@ module.exports = {
"no-with": "error", "no-with": "error",
"nonblock-statement-body-position": "error", "nonblock-statement-body-position": "error",
"object-curly-newline": "off", "object-curly-newline": "off",
"object-curly-spacing": "off", "object-curly-spacing": "error",
"object-property-newline": [ "object-property-newline": [
"error", "error",
{ {
@ -314,6 +314,7 @@ module.exports = {
"error", "error",
"never" "never"
], ],
"indent": [ "error", 2, { "SwitchCase": 1 } ],
// Custom silencers: // Custom silencers:
"camelcase": 0, "camelcase": 0,
@ -335,7 +336,6 @@ module.exports = {
"no-unused-vars": 1, "no-unused-vars": 1,
// TODO Consider fixing these: // TODO Consider fixing these:
"indent": [ 0, 2, { "SwitchCase": 1 } ],
"valid-jsdoc": 0, "valid-jsdoc": 0,
"new-cap": [ 0, { "properties": false, "capIsNewExceptionPattern": "^type_.*" }], "new-cap": [ 0, { "properties": false, "capIsNewExceptionPattern": "^type_.*" }],
"no-lonely-if": 0, "no-lonely-if": 0,

View File

@ -84,8 +84,10 @@ export default {
} }
break; break;
} }
return { r: r.toArrayLike(Uint8Array), return {
s: s.toArrayLike(Uint8Array) }; r: r.toArrayLike(Uint8Array),
s: s.toArrayLike(Uint8Array)
};
}, },
/** /**

View File

@ -38,8 +38,10 @@ async function sign(oid, hash_algo, m, d, hashed) {
const curve = new Curve(oid); const curve = new Curve(oid);
const key = curve.keyFromPrivate(d); const key = curve.keyFromPrivate(d);
const signature = await key.sign(m, hash_algo, hashed); const signature = await key.sign(m, hash_algo, hashed);
return { r: signature.r.toArrayLike(Uint8Array), return {
s: signature.s.toArrayLike(Uint8Array) }; r: signature.r.toArrayLike(Uint8Array),
s: signature.s.toArrayLike(Uint8Array)
};
} }
/** /**

View File

@ -240,35 +240,35 @@ async function nodeVerify(curve, hash_algo, { r, s }, message, publicKey) {
const asn1 = nodeCrypto ? require('asn1.js') : undefined; const asn1 = nodeCrypto ? require('asn1.js') : undefined;
const ECDSASignature = nodeCrypto ? const ECDSASignature = nodeCrypto ?
asn1.define('ECDSASignature', function() { asn1.define('ECDSASignature', function() {
this.seq().obj( this.seq().obj(
this.key('r').int(), this.key('r').int(),
this.key('s').int() this.key('s').int()
); );
}) : undefined; }) : undefined;
const ECPrivateKey = nodeCrypto ? const ECPrivateKey = nodeCrypto ?
asn1.define('ECPrivateKey', function() { asn1.define('ECPrivateKey', function() {
this.seq().obj( this.seq().obj(
this.key('version').int(), this.key('version').int(),
this.key('privateKey').octstr(), this.key('privateKey').octstr(),
this.key('parameters').explicit(0).optional().any(), this.key('parameters').explicit(0).optional().any(),
this.key('publicKey').explicit(1).optional().bitstr() this.key('publicKey').explicit(1).optional().bitstr()
); );
}) : undefined; }) : undefined;
const AlgorithmIdentifier = nodeCrypto ? const AlgorithmIdentifier = nodeCrypto ?
asn1.define('AlgorithmIdentifier', function() { asn1.define('AlgorithmIdentifier', function() {
this.seq().obj( this.seq().obj(
this.key('algorithm').objid(), this.key('algorithm').objid(),
this.key('parameters').optional().any() this.key('parameters').optional().any()
); );
}) : undefined; }) : undefined;
const SubjectPublicKeyInfo = nodeCrypto ? const SubjectPublicKeyInfo = nodeCrypto ?
asn1.define('SubjectPublicKeyInfo', function() { asn1.define('SubjectPublicKeyInfo', function() {
this.seq().obj( this.seq().obj(
this.key('algorithm').use(AlgorithmIdentifier), this.key('algorithm').use(AlgorithmIdentifier),
this.key('subjectPublicKey').bitstr() this.key('subjectPublicKey').bitstr()
); );
}) : undefined; }) : undefined;

View File

@ -52,13 +52,13 @@ async function randomProbablePrime(bits, e, k) {
let i = n.mod(thirty).toNumber(); let i = n.mod(thirty).toNumber();
do { do {
n.iaddn(adds[i]); n.iaddn(adds[i]);
i = (i + adds[i]) % adds.length; i = (i + adds[i]) % adds.length;
// If reached the maximum, go back to the minimum. // If reached the maximum, go back to the minimum.
if (n.bitLength() > bits) { if (n.bitLength() > bits) {
n = n.mod(min.shln(1)).iadd(min); n = n.mod(min.shln(1)).iadd(min);
i = n.mod(thirty).toNumber(); i = n.mod(thirty).toNumber();
} }
} while (!await isProbablePrime(n, e, k)); } while (!await isProbablePrime(n, e, k));
return n; return n;
} }

View File

@ -65,8 +65,10 @@ export default {
case enums.publicKey.eddsa: { case enums.publicKey.eddsa: {
const oid = pub_MPIs[0]; const oid = pub_MPIs[0];
// EdDSA signature params are expected in little-endian format // EdDSA signature params are expected in little-endian format
const signature = { R: msg_MPIs[0].toUint8Array('le', 32), const signature = {
S: msg_MPIs[1].toUint8Array('le', 32) }; R: msg_MPIs[0].toUint8Array('le', 32),
S: msg_MPIs[1].toUint8Array('le', 32)
};
const Q = pub_MPIs[1].toUint8Array('be', 33); const Q = pub_MPIs[1].toUint8Array('be', 33);
return publicKey.elliptic.eddsa.verify(oid, hash_algo, signature, data, Q, hashed); return publicKey.elliptic.eddsa.verify(oid, hash_algo, signature, data, Q, hashed);
} }

View File

@ -1564,7 +1564,7 @@ async function wrapKeyObject(secretKeyPacket, secretSubkeyPackets, options) {
} }
await subkeySignaturePacket.sign(secretKeyPacket, dataToSign); await subkeySignaturePacket.sign(secretKeyPacket, dataToSign);
return { secretSubkeyPacket, subkeySignaturePacket}; return { secretSubkeyPacket, subkeySignaturePacket };
})).then(packets => { })).then(packets => {
packets.forEach(({ secretSubkeyPacket, subkeySignaturePacket }) => { packets.forEach(({ secretSubkeyPacket, subkeySignaturePacket }) => {
packetlist.push(secretSubkeyPacket); packetlist.push(secretSubkeyPacket);

View File

@ -541,9 +541,9 @@ export async function createSignaturePackets(literalDataPacket, privateKeys, sig
const signingKey = await privateKey.getSigningKey(undefined, date, userId); const signingKey = await privateKey.getSigningKey(undefined, date, userId);
if (!signingKey) { if (!signingKey) {
throw new Error(`Could not find valid signing key packet in key ${ throw new Error(`Could not find valid signing key packet in key ${
privateKey.getKeyId().toHex()}`); privateKey.getKeyId().toHex()}`);
} }
return createSignaturePacket(literalDataPacket, privateKey, signingKey.keyPacket, {signatureType}, date, userId); return createSignaturePacket(literalDataPacket, privateKey, signingKey.keyPacket, { signatureType }, date, userId);
})).then(signatureList => { })).then(signatureList => {
signatureList.forEach(signaturePacket => packetlist.push(signaturePacket)); signatureList.forEach(signaturePacket => packetlist.push(signaturePacket));
}); });

View File

@ -157,7 +157,7 @@ export function generateKey({ userIds=[], passphrase="", numBits=2048, keyExpira
* @async * @async
* @static * @static
*/ */
export function reformatKey({privateKey, userIds=[], passphrase="", keyExpirationTime=0, date, revocationCertificate=true}) { export function reformatKey({ privateKey, userIds=[], passphrase="", keyExpirationTime=0, date, revocationCertificate=true }) {
userIds = toArray(userIds); userIds = toArray(userIds);
const options = { privateKey, userIds, passphrase, keyExpirationTime, date, revocationCertificate }; const options = { privateKey, userIds, passphrase, keyExpirationTime, date, revocationCertificate };
if (asyncProxy) { if (asyncProxy) {

View File

@ -65,11 +65,11 @@ function OnePassSignature() {
this.publicKeyAlgorithm = null; this.publicKeyAlgorithm = null;
/** An eight-octet number holding the Key ID of the signing key. */ /** An eight-octet number holding the Key ID of the signing key. */
this.issuerKeyId = null; this.issuerKeyId = null;
/** /**
* A one-octet number holding a flag showing whether the signature is nested. * A one-octet number holding a flag showing whether the signature is nested.
* A zero value indicates that the next packet is another One-Pass Signature packet * A zero value indicates that the next packet is another One-Pass Signature packet
* that describes another signature to be applied to the same message data. * that describes another signature to be applied to the same message data.
*/ */
this.flags = null; this.flags = null;
} }

View File

@ -140,7 +140,7 @@ export default {
value.postMessage({ action: 'cancel' }); value.postMessage({ action: 'cancel' });
}); });
} }
}, {highWaterMark: 0}); }, { highWaterMark: 0 });
return; return;
} }
util.restoreStreams(value); util.restoreStreams(value);

View File

@ -51,7 +51,7 @@ WKD.prototype.lookup = async function(options) {
} }
if (!util.isEmailAddress(options.email)) { if (!util.isEmailAddress(options.email)) {
throw new Error('Invalid e-mail address.'); throw new Error('Invalid e-mail address.');
} }
const [, localPart, domain] = /(.*)@(.*)/.exec(options.email); const [, localPart, domain] = /(.*)@(.*)/.exec(options.email);
@ -65,11 +65,11 @@ WKD.prototype.lookup = async function(options) {
} }
}).then(function(publicKey) { }).then(function(publicKey) {
if (publicKey) { if (publicKey) {
const rawBytes = new Uint8Array(publicKey); const rawBytes = new Uint8Array(publicKey);
if (options.rawBytes) { if (options.rawBytes) {
return rawBytes; return rawBytes;
} }
return keyMod.read(rawBytes); return keyMod.read(rawBytes);
} }
}); });
}; };