Skip to main content

Pure-Python library that implements operations over the BN(2,254) pairing-friendly curve.

Project description

Pure-Python library that implements operations over the BN(2,254) pairing-friendly curve.

Usage Examples

This library is available as a package on PyPI. Usage examples are provided below:

from bn254.curve import r as scalar_upper_bound
from bn254.ecp import generator as base_point
from bn254.ecp2 import generator as random_point
from bn254.big import invmodp, rand
from bn254.pair import e

P = random_point()
G = base_point()
s = rand(scalar_upper_bound)
t = rand(scalar_upper_bound)
s_inv = invmodp(s, scalar_upper_bound)
b = s_inv * t

assert(
    e(t*P, G) == e(s*P, b*G)
)

Acknowledgments

This product includes software developed at the Apache Software Foundation. See file headers for notices. You may find archives of the original Apache Milagro Cryptographic Library documentation and source files (some of which were included in a modified form within this library) at the links below:

The authors also acknowledge learning about the original Apache Milagro Cryptographic Library via the use of its source code within the MIRACL Core Cryptographic Library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bn254-0.1.2.tar.gz (19.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page