You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.7 KiB

  1. const chai = require("chai");
  2. const path = require("path");
  3. const Fr = require("ffjavascript").bn128.Fr;
  4. const tester = require("circom").tester;
  5. const babyJub = require("../src/babyjub.js");
  6. const PBASE =
  7. [
  8. [Fr.e("10457101036533406547632367118273992217979173478358440826365724437999023779287"),Fr.e("19824078218392094440610104313265183977899662750282163392862422243483260492317")],
  9. [Fr.e("2671756056509184035029146175565761955751135805354291559563293617232983272177"),Fr.e("2663205510731142763556352975002641716101654201788071096152948830924149045094")],
  10. [Fr.e("5802099305472655231388284418920769829666717045250560929368476121199858275951"),Fr.e("5980429700218124965372158798884772646841287887664001482443826541541529227896")],
  11. [Fr.e("7107336197374528537877327281242680114152313102022415488494307685842428166594"),Fr.e("2857869773864086953506483169737724679646433914307247183624878062391496185654")],
  12. [Fr.e("20265828622013100949498132415626198973119240347465898028410217039057588424236"),Fr.e("1160461593266035632937973507065134938065359936056410650153315956301179689506")]
  13. ];
  14. describe("Double Pedersen test", function() {
  15. let circuit;
  16. this.timeout(100000);
  17. before( async() => {
  18. circuit = await tester(path.join(__dirname, "circuits", "pedersen_test.circom"));
  19. });
  20. it("Should pedersen at zero", async () => {
  21. let w;
  22. w = await circuit.calculateWitness({ in: ["0", "0"]}, true);
  23. await circuit.assertOut(w, {out: [0,1]});
  24. });
  25. it("Should pedersen at one first generator", async () => {
  26. let w;
  27. w = await circuit.calculateWitness({ in: ["1", "0"]}, true);
  28. await circuit.assertOut(w, {out: PBASE[0]});
  29. });
  30. it("Should pedersen at one second generator", async () => {
  31. let w;
  32. w = await circuit.calculateWitness({ in: ["0", "1"]}, true);
  33. await circuit.assertOut(w, {out: PBASE[1]});
  34. });
  35. it("Should pedersen at mixed generators", async () => {
  36. let w;
  37. w = await circuit.calculateWitness({ in: ["3", "7"]}, true);
  38. const r = babyJub.addPoint(
  39. babyJub.mulPointEscalar(PBASE[0], 3),
  40. babyJub.mulPointEscalar(PBASE[1], 7)
  41. );
  42. await circuit.assertOut(w, {out: r});
  43. });
  44. it("Should pedersen all ones", async () => {
  45. let w;
  46. const allOnes = Fr.sub(Fr.shl(Fr.e("1"), Fr.e(250)), Fr.e("1"));
  47. w = await circuit.calculateWitness({ in: [allOnes, allOnes]}, true);
  48. const r2 = babyJub.addPoint(
  49. babyJub.mulPointEscalar(PBASE[0], allOnes),
  50. babyJub.mulPointEscalar(PBASE[1], allOnes)
  51. );
  52. await circuit.assertOut(w, {out: r2});
  53. });
  54. });