Wire Sysio Wire Sysion 1.0.0
|
#include <sstream>
#include <libff/algebra/curves/bn128/bn128_g1.hpp>
#include <libff/algebra/curves/bn128/bn128_g2.hpp>
#include <libff/algebra/curves/bn128/bn128_gt.hpp>
#include <libff/algebra/curves/bn128/bn128_init.hpp>
#include <libff/algebra/curves/bn128/bn128_pairing.hpp>
#include <libff/common/profiling.hpp>
Go to the source code of this file.
Namespaces | |
namespace | libff |
Functions | |
std::ostream & | libff::operator<< (std::ostream &out, const bn128_ate_G1_precomp &prec_P) |
std::istream & | libff::operator>> (std::istream &in, bn128_ate_G1_precomp &prec_P) |
std::ostream & | libff::operator<< (std::ostream &out, const bn128_ate_G2_precomp &prec_Q) |
std::istream & | libff::operator>> (std::istream &in, bn128_ate_G2_precomp &prec_Q) |
bn128_ate_G1_precomp | libff::bn128_ate_precompute_G1 (const bn128_G1 &P) |
bn128_ate_G2_precomp | libff::bn128_ate_precompute_G2 (const bn128_G2 &Q) |
bn128_Fq12 | libff::bn128_ate_miller_loop (const bn128_ate_G1_precomp &prec_P, const bn128_ate_G2_precomp &prec_Q) |
bn128_Fq12 | libff::bn128_double_ate_miller_loop (const bn128_ate_G1_precomp &prec_P1, const bn128_ate_G2_precomp &prec_Q1, const bn128_ate_G1_precomp &prec_P2, const bn128_ate_G2_precomp &prec_Q2) |
bn128_GT | libff::bn128_final_exponentiation (const bn128_Fq12 &elt) |
Implements functions for computing Ate pairings over the bn128 curves, split into a offline and online stages.
Definition in file bn128_pairing.cpp.