/* This module calculate the pairing of p1 and p2 where p1 in G1 and p2 in G2 */ const bigInt = require("big-integer"); module.exports = function pairing(p1, p2) { // TODO throw new Error("Not Implementted"); };