[This note](https://hackmd.io/@70xfCGp1QViTYYJh3AMrQg/S1cU7YJGC) focus on paper [On Proving Pairings](https://eprint.iacr.org/2024/640.pdf), which is a great propsal on recusive snark on pairings (verification pairings within circuit).
The complete testation code is under [repo](https://githu...
var Crypto = require('crypto')
var secp256k1 = require('secp256k1')
var createKeccakHash = require('keccak')
// 一个32字节的随机数(1~2^256-1),直接把他当私钥
var privateKey = Crypto.randomBytes(32);
// 由secp256k1椭圆曲线算法先计算出公钥
var pubKey = secp25...