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

/*
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");
};