c-kzg-4844/bindings/node.js/test.ts

45 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-11-03 22:13:49 +00:00
import { randomBytes } from "crypto";
import {
loadTrustedSetup,
freeTrustedSetup,
2022-11-03 00:17:17 +00:00
blobToKzgCommitment,
2022-11-03 19:57:46 +00:00
computeAggregateKzgProof,
2022-11-03 21:39:02 +00:00
verifyAggregateKzgProof,
BYTES_PER_FIELD,
FIELD_ELEMENTS_PER_BLOB,
verifyKzgProof,
2022-11-03 22:13:49 +00:00
} from "./kzg";
2022-11-02 20:45:29 +00:00
2022-11-03 22:13:49 +00:00
const SETUP_FILE_PATH = "../../src/trusted_setup.txt";
const BLOB_BYTE_COUNT = FIELD_ELEMENTS_PER_BLOB * BYTES_PER_FIELD;
2022-11-03 19:57:46 +00:00
const generateRandomBlob = () => new Uint8Array(randomBytes(BLOB_BYTE_COUNT));
2022-11-03 00:17:17 +00:00
2022-11-03 22:13:49 +00:00
describe("C-KZG", () => {
beforeAll(() => {
2022-11-03 21:39:02 +00:00
loadTrustedSetup(SETUP_FILE_PATH);
});
afterAll(() => {
2022-11-03 21:39:02 +00:00
freeTrustedSetup();
});
it.skip("verifies a proof at a given commitment point", async () => {
const blob = generateRandomBlob();
const commitment = blobToKzgCommitment(blob);
const proof = computeAggregateKzgProof([blob]);
const z = Uint8Array.from(new Array(32).fill(0));
const y = Uint8Array.from(new Array(32).fill(0));
expect(verifyKzgProof(commitment, z, y, proof)).toBe(true);
});
it("computes the correct aggregate commitment from blobs", async () => {
const blobs = new Array(2).fill(0).map(generateRandomBlob);
const commitments = blobs.map(blobToKzgCommitment);
const proof = computeAggregateKzgProof(blobs);
expect(verifyAggregateKzgProof(blobs, commitments, proof)).toBe(true);
2022-11-02 20:45:29 +00:00
});
});