This package is a fully tested python edition of Golang crypto/bn256.
pip install bn256
from bn256 import G1, G2, GT
k1, g1 = G1.random_g1()
k2, g2 = G2.random_g2()
gt = GT.pair(g1, g2)
print(gt.marshal().hex())
This package is a fully tested python edition of Golang crypto/bn256.
pip install bn256
from bn256 import G1, G2, GT
k1, g1 = G1.random_g1()
k2, g2 = G2.random_g2()
gt = GT.pair(g1, g2)
print(gt.marshal().hex())