Clearmatics Libff
0.1
C++ library for Finite Fields and Elliptic Curves
|
#include <cassert>
#include <libff/algebra/curves/alt_bn128/alt_bn128_g1.hpp>
#include <libff/algebra/curves/alt_bn128/alt_bn128_g2.hpp>
#include <libff/algebra/curves/alt_bn128/alt_bn128_init.hpp>
#include <libff/algebra/curves/alt_bn128/alt_bn128_pairing.hpp>
#include <libff/common/profiling.hpp>
Go to the source code of this file.
Namespaces | |
libff | |
Functions | |
std::ostream & | libff::operator<< (std::ostream &out, const alt_bn128_ate_G1_precomp &prec_P) |
std::istream & | libff::operator>> (std::istream &in, alt_bn128_ate_G1_precomp &prec_P) |
std::ostream & | libff::operator<< (std::ostream &out, const alt_bn128_ate_ell_coeffs &c) |
std::istream & | libff::operator>> (std::istream &in, alt_bn128_ate_ell_coeffs &c) |
std::ostream & | libff::operator<< (std::ostream &out, const alt_bn128_ate_G2_precomp &prec_Q) |
std::istream & | libff::operator>> (std::istream &in, alt_bn128_ate_G2_precomp &prec_Q) |
alt_bn128_Fq12 | libff::alt_bn128_final_exponentiation_first_chunk (const alt_bn128_Fq12 &elt) |
alt_bn128_Fq12 | libff::alt_bn128_exp_by_neg_z (const alt_bn128_Fq12 &elt) |
alt_bn128_Fq12 | libff::alt_bn128_final_exponentiation_last_chunk (const alt_bn128_Fq12 &elt) |
alt_bn128_GT | libff::alt_bn128_final_exponentiation (const alt_bn128_Fq12 &elt) |
void | libff::doubling_step_for_flipped_miller_loop (const alt_bn128_Fq two_inv, alt_bn128_G2 ¤t, alt_bn128_ate_ell_coeffs &c) |
void | libff::mixed_addition_step_for_flipped_miller_loop (const alt_bn128_G2 base, alt_bn128_G2 ¤t, alt_bn128_ate_ell_coeffs &c) |
alt_bn128_ate_G1_precomp | libff::alt_bn128_ate_precompute_G1 (const alt_bn128_G1 &P) |
alt_bn128_ate_G2_precomp | libff::alt_bn128_ate_precompute_G2 (const alt_bn128_G2 &Q) |
alt_bn128_Fq12 | libff::alt_bn128_ate_miller_loop (const alt_bn128_ate_G1_precomp &prec_P, const alt_bn128_ate_G2_precomp &prec_Q) |
alt_bn128_Fq12 | libff::alt_bn128_ate_double_miller_loop (const alt_bn128_ate_G1_precomp &prec_P1, const alt_bn128_ate_G2_precomp &prec_Q1, const alt_bn128_ate_G1_precomp &prec_P2, const alt_bn128_ate_G2_precomp &prec_Q2) |
alt_bn128_Fq12 | libff::alt_bn128_ate_pairing (const alt_bn128_G1 &P, const alt_bn128_G2 &Q) |
alt_bn128_GT | libff::alt_bn128_ate_reduced_pairing (const alt_bn128_G1 &P, const alt_bn128_G2 &Q) |
alt_bn128_G1_precomp | libff::alt_bn128_precompute_G1 (const alt_bn128_G1 &P) |
alt_bn128_G2_precomp | libff::alt_bn128_precompute_G2 (const alt_bn128_G2 &Q) |
alt_bn128_Fq12 | libff::alt_bn128_miller_loop (const alt_bn128_G1_precomp &prec_P, const alt_bn128_G2_precomp &prec_Q) |
alt_bn128_Fq12 | libff::alt_bn128_double_miller_loop (const alt_bn128_G1_precomp &prec_P1, const alt_bn128_G2_precomp &prec_Q1, const alt_bn128_G1_precomp &prec_P2, const alt_bn128_G2_precomp &prec_Q2) |
alt_bn128_Fq12 | libff::alt_bn128_pairing (const alt_bn128_G1 &P, const alt_bn128_G2 &Q) |
alt_bn128_GT | libff::alt_bn128_reduced_pairing (const alt_bn128_G1 &P, const alt_bn128_G2 &Q) |
Definition in file alt_bn128_pairing.cpp.