Skip to content

Commit 9d19a79

Browse files
authored
return verification result (#117)
1 parent 2b951b5 commit 9d19a79

File tree

5 files changed

+35
-7
lines changed

5 files changed

+35
-7
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@0xpolygonid/js-sdk",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "SDK to work with Polygon ID",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm_esbuild/index.js",

src/proof/prover.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,16 @@ export class NativeProver implements IZKProver {
5757
throw new Error(`verification file doesn't exist for circuit ${circuitId}`);
5858
}
5959

60-
await snarkjs.groth16.verify(
60+
const result = await snarkjs.groth16.verify(
6161
JSON.parse(byteDecoder.decode(circuitData.verificationKey)),
6262
zkp.pub_signals,
6363
zkp.proof
6464
);
6565

6666
// we need to terminate curve manually
6767
await this.terminateCurve();
68-
return true;
68+
69+
return result;
6970
} catch (e) {
7071
// eslint-disable-next-line no-console
7172
console.log(e);

tests/proofs/sig.test.ts

+28-1
Original file line numberDiff line numberDiff line change
@@ -321,9 +321,36 @@ describe('sig proofs', () => {
321321
const creds = await credWallet.findByQuery(req.body.scope[0].query);
322322
expect(creds.length).to.not.equal(0);
323323

324-
const { proof, vp } = await proofService.generateProof(req.body.scope[0], userDID);
324+
const { proof, vp, circuitId, pub_signals } = await proofService.generateProof(
325+
req.body.scope[0],
326+
userDID
327+
);
325328
expect(proof).not.to.be.undefined;
326329
expect(vp).to.be.undefined;
330+
331+
const isValid = await proofService.verifyProof(
332+
{
333+
proof,
334+
pub_signals
335+
},
336+
circuitId as CircuitId
337+
);
338+
339+
expect(isValid).to.be.true;
340+
341+
const pi_a = ['99', ...proof.pi_a.slice(1)];
342+
const isNotValid = await proofService.verifyProof(
343+
{
344+
proof: {
345+
...proof,
346+
pi_a
347+
},
348+
pub_signals
349+
},
350+
circuitId as CircuitId
351+
);
352+
353+
expect(isNotValid).to.be.false;
327354
});
328355

329356
it('sigv2 vp-credential', async () => {

types/snarkjs.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
declare module 'snarkjs' {
22
export namespace groth16 {
3-
export function verify(verKey: object, pubSignals: string[], proof: object): Promise<void>;
3+
export function verify(verKey: object, pubSignals: string[], proof: object): Promise<boolean>;
44

55
export function prove(
66
provingKey: object,

0 commit comments

Comments
 (0)