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.

10 lines
223 B

5 years ago
  1. /*
  2. This module calculate the pairing of p1 and p2 where p1 in G1 and p2 in G2
  3. */
  4. const bigInt = require("big-integer");
  5. module.exports = function pairing(p1, p2) {
  6. // TODO
  7. throw new Error("Not Implementted");
  8. };