2021-04-04 23:44:55 +00:00
|
|
|
import {expect} from "chai";
|
|
|
|
import {IBls, PublicKey, Signature} from "../../../../src";
|
|
|
|
import {BlsMultiThreadNaive} from "./index";
|
|
|
|
|
|
|
|
export function runMultithreadTests(bls: IBls): void {
|
|
|
|
describe("bls pool naive", function () {
|
2021-04-05 00:22:29 +00:00
|
|
|
// Starting all threads may take a while due to ts-node compilation
|
|
|
|
this.timeout(20 * 1000);
|
|
|
|
|
2021-04-04 23:44:55 +00:00
|
|
|
const n = 16;
|
|
|
|
let pool: BlsMultiThreadNaive;
|
|
|
|
|
|
|
|
before("Create pool and warm-up wallets", async function () {
|
|
|
|
pool = new BlsMultiThreadNaive(bls.implementation);
|
|
|
|
});
|
|
|
|
|
|
|
|
after("Destroy pool", async function () {
|
|
|
|
await pool.destroy();
|
|
|
|
});
|
|
|
|
|
2021-04-05 15:52:21 +00:00
|
|
|
describe("1 msg, 1 pk", function () {
|
2021-04-04 23:44:55 +00:00
|
|
|
const msg = Buffer.from("sample-msg");
|
|
|
|
const sk = bls.SecretKey.fromKeygen(Buffer.alloc(32, 1));
|
|
|
|
const pk = sk.toPublicKey();
|
|
|
|
const sig = sk.sign(msg);
|
|
|
|
|
2021-04-05 15:52:21 +00:00
|
|
|
it("verify", async function () {
|
|
|
|
if (bls.implementation === "herumi") this.skip();
|
|
|
|
|
2021-04-05 00:22:29 +00:00
|
|
|
const validArr = await Promise.all(
|
|
|
|
Array.from({length: 32}, (i) => i).map(async () => pool.verify(pk, msg, sig))
|
|
|
|
);
|
|
|
|
for (const [i, valid] of validArr.entries()) {
|
|
|
|
expect(valid).to.equal(true, `Invalid ${i}`);
|
|
|
|
}
|
2021-04-04 23:44:55 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-04-05 15:52:21 +00:00
|
|
|
describe("N msgs, N pks", function () {
|
2021-04-04 23:44:55 +00:00
|
|
|
const sets: {publicKey: PublicKey; message: Uint8Array; signature: Signature}[] = [];
|
|
|
|
for (let i = 0; i < n; i++) {
|
|
|
|
const message = Buffer.alloc(32, i);
|
|
|
|
const sk = bls.SecretKey.fromKeygen(Buffer.alloc(32, i));
|
|
|
|
sets.push({message, publicKey: sk.toPublicKey(), signature: sk.sign(message)});
|
|
|
|
}
|
|
|
|
|
2021-04-05 15:52:21 +00:00
|
|
|
it("verify", async function () {
|
|
|
|
if (bls.implementation === "herumi") this.skip();
|
|
|
|
|
2021-04-04 23:44:55 +00:00
|
|
|
const validArr = await Promise.all(sets.map((s) => pool.verify(s.publicKey, s.message, s.signature)));
|
|
|
|
for (const [i, valid] of validArr.entries()) {
|
|
|
|
expect(valid).to.equal(true, `Invalid ${i}`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-04-05 15:52:21 +00:00
|
|
|
it("verifyMultipleAggregateSignatures", async function () {
|
|
|
|
if (bls.implementation === "herumi") this.skip();
|
|
|
|
|
2021-04-04 23:44:55 +00:00
|
|
|
const valid = await pool.verifyMultipleAggregateSignatures(sets);
|
|
|
|
expect(valid).to.equal(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|