From 7c7cfc332a77435b3e5be1d8b3e7f820afe78d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marin=20Petruni=C4=87?= Date: Fri, 16 Aug 2019 10:54:16 +0200 Subject: [PATCH] api configuration --- src/helpers/g1point.ts | 4 ++-- src/helpers/g2point.ts | 8 ++++---- src/helpers/utils.ts | 2 +- src/index.ts | 6 +++--- src/privateKey.ts | 2 +- src/web.ts | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/helpers/g1point.ts b/src/helpers/g1point.ts index 8e087b4..ff705d0 100644 --- a/src/helpers/g1point.ts +++ b/src/helpers/g1point.ts @@ -96,7 +96,7 @@ export class G1point { const x = new ctx.FP(point.getX()); const yneg = new ctx.FP(point.getY()); yneg.neg(); - point.setxy(x.redc(), yneg.redc()) + point.setxy(x.redc(), yneg.redc()); } return new G1point(point); @@ -115,7 +115,7 @@ export class G1point { random.randomBuffer(FP_POINT_LENGTH), 0 ) - ) + ); } while (ecp.is_infinity()); return new G1point(ecp); } diff --git a/src/helpers/g2point.ts b/src/helpers/g2point.ts index 2eaab98..0a0fc89 100644 --- a/src/helpers/g2point.ts +++ b/src/helpers/g2point.ts @@ -1,7 +1,7 @@ import {BIG} from "@chainsafe/milagro-crypto-js/src/big"; import {ECP2} from "@chainsafe/milagro-crypto-js/src/ecp2"; import {BLSDomain, bytes32, bytes96} from "../types"; -import { sha256 } from 'js-sha256'; +import {sha256} from 'js-sha256'; import ctx from "../ctx"; import * as random from "secure-random"; import {calculateYFlag, getModulus, padLeft} from "./utils"; @@ -89,7 +89,7 @@ export class G2point { xRe.add(one); xRe.norm(); point = new ctx.ECP2(); - point.setx(new ctx.FP2(xRe, xIm)) + point.setx(new ctx.FP2(xRe, xIm)); } return new G2point(G2point.scaleWithCofactor(G2point.normaliseY(point))); } @@ -189,7 +189,7 @@ export class G2point { 0 ) ) - ) + ); } while (point.is_infinity()); return new G2point(point); } @@ -240,7 +240,7 @@ export class G2point { ) { const newPoint = new ctx.ECP2(); newPoint.setxy(point.getX(), yNeg); - return newPoint + return newPoint; } else { return point; } diff --git a/src/helpers/utils.ts b/src/helpers/utils.ts index 4bac7ba..25f1367 100644 --- a/src/helpers/utils.ts +++ b/src/helpers/utils.ts @@ -23,7 +23,7 @@ export function getModulus(): BIG { 'hex' ), 0 - ) + ); } export function calculateYFlag(yIm: BIG): boolean { diff --git a/src/index.ts b/src/index.ts index 31616a7..812289a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -49,7 +49,7 @@ function sign(secretKey: BLSSecretKey, messageHash: bytes32, domain: BLSDomain): */ function aggregateSignatures(signatures: BLSSignature[]): BLSSignature { return signatures.map((signature): Signature => { - return Signature.fromCompressedBytes(signature) + return Signature.fromCompressedBytes(signature); }).reduce((previousValue, currentValue): Signature => { return previousValue.add(currentValue); }).toBytesCompressed(); @@ -64,7 +64,7 @@ function aggregatePubkeys(publicKeys: BLSPubkey[]): BLSPubkey { return new G1point(new ctx.ECP()).toBytesCompressed(); } return publicKeys.map((publicKey): G1point => { - return G1point.fromBytesCompressed(publicKey) + return G1point.fromBytesCompressed(publicKey); }).reduce((previousValue, currentValue): G1point => { return previousValue.add(currentValue); }).toBytesCompressed(); @@ -129,4 +129,4 @@ export default { aggregatePubkeys, verify, verifyMultiple -} +}; diff --git a/src/privateKey.ts b/src/privateKey.ts index e99dba2..a4cbd4b 100644 --- a/src/privateKey.ts +++ b/src/privateKey.ts @@ -48,7 +48,7 @@ export class PrivateKey { ), 0 ) - ) + ); } public static fromHexString(value: string): PrivateKey { diff --git a/src/web.ts b/src/web.ts index 08397b6..519e5e3 100644 --- a/src/web.ts +++ b/src/web.ts @@ -1,8 +1,8 @@ -import bls from "./index" +import bls from "./index"; // eslint-disable-next-line @typescript-eslint/no-explicit-any // @ts-ignore (function (window: any) { - window.bls = bls + window.bls = bls; // @ts-ignore })(window);