Clearmatics Libff
0.1
C++ library for Finite Fields and Elliptic Curves
|
#include <cassert>
#include <libff/algebra/curves/bls12_381/bls12_381_g1.hpp>
#include <libff/algebra/curves/bls12_381/bls12_381_g2.hpp>
#include <libff/algebra/curves/bls12_381/bls12_381_init.hpp>
#include <libff/algebra/curves/bls12_381/bls12_381_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 bls12_381_ate_G1_precomp &prec_P) |
std::istream & | libff::operator>> (std::istream &in, bls12_381_ate_G1_precomp &prec_P) |
std::ostream & | libff::operator<< (std::ostream &out, const bls12_381_ate_ell_coeffs &c) |
std::istream & | libff::operator>> (std::istream &in, bls12_381_ate_ell_coeffs &c) |
std::ostream & | libff::operator<< (std::ostream &out, const bls12_381_ate_G2_precomp &prec_Q) |
std::istream & | libff::operator>> (std::istream &in, bls12_381_ate_G2_precomp &prec_Q) |
bls12_381_Fq12 | libff::bls12_381_final_exponentiation_first_chunk (const bls12_381_Fq12 &elt) |
bls12_381_Fq12 | libff::bls12_381_exp_by_z (const bls12_381_Fq12 &elt) |
bls12_381_Fq12 | libff::bls12_381_final_exponentiation_last_chunk (const bls12_381_Fq12 &elt) |
bls12_381_GT | libff::bls12_381_final_exponentiation (const bls12_381_Fq12 &elt) |
void | libff::bls12_381_doubling_step_for_miller_loop (const bls12_381_Fq two_inv, bls12_381_G2 ¤t, bls12_381_ate_ell_coeffs &c) |
void | libff::bls12_381_mixed_addition_step_for_miller_loop (const bls12_381_G2 base, bls12_381_G2 ¤t, bls12_381_ate_ell_coeffs &c) |
bls12_381_ate_G1_precomp | libff::bls12_381_ate_precompute_G1 (const bls12_381_G1 &P) |
bls12_381_ate_G2_precomp | libff::bls12_381_ate_precompute_G2 (const bls12_381_G2 &Q) |
bls12_381_Fq12 | libff::bls12_381_ate_miller_loop (const bls12_381_ate_G1_precomp &prec_P, const bls12_381_ate_G2_precomp &prec_Q) |
bls12_381_Fq12 | libff::bls12_381_ate_double_miller_loop (const bls12_381_ate_G1_precomp &prec_P1, const bls12_381_ate_G2_precomp &prec_Q1, const bls12_381_ate_G1_precomp &prec_P2, const bls12_381_ate_G2_precomp &prec_Q2) |
bls12_381_Fq12 | libff::bls12_381_ate_pairing (const bls12_381_G1 &P, const bls12_381_G2 &Q) |
bls12_381_GT | libff::bls12_381_ate_reduced_pairing (const bls12_381_G1 &P, const bls12_381_G2 &Q) |
bls12_381_G1_precomp | libff::bls12_381_precompute_G1 (const bls12_381_G1 &P) |
bls12_381_G2_precomp | libff::bls12_381_precompute_G2 (const bls12_381_G2 &Q) |
bls12_381_Fq12 | libff::bls12_381_miller_loop (const bls12_381_G1_precomp &prec_P, const bls12_381_G2_precomp &prec_Q) |
bls12_381_Fq12 | libff::bls12_381_double_miller_loop (const bls12_381_G1_precomp &prec_P1, const bls12_381_G2_precomp &prec_Q1, const bls12_381_G1_precomp &prec_P2, const bls12_381_G2_precomp &prec_Q2) |
bls12_381_Fq12 | libff::bls12_381_pairing (const bls12_381_G1 &P, const bls12_381_G2 &Q) |
bls12_381_GT | libff::bls12_381_reduced_pairing (const bls12_381_G1 &P, const bls12_381_G2 &Q) |
Definition in file bls12_381_pairing.cpp.