Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
libff::edwards_Fq3_conic_coefficients Struct Reference

#include <edwards_pairing.hpp>

Collaboration diagram for libff::edwards_Fq3_conic_coefficients:

Public Member Functions

bool operator== (const edwards_Fq3_conic_coefficients &other) const
 

Public Attributes

edwards_Fq3 c_ZZ
 
edwards_Fq3 c_XY
 
edwards_Fq3 c_XZ
 

Friends

std::ostream & operator<< (std::ostream &out, const edwards_Fq3_conic_coefficients &cc)
 
std::istream & operator>> (std::istream &in, edwards_Fq3_conic_coefficients &cc)
 

Detailed Description

Definition at line 61 of file edwards_pairing.hpp.

Member Function Documentation

◆ operator==()

bool libff::edwards_Fq3_conic_coefficients::operator== ( const edwards_Fq3_conic_coefficients & other) const

Definition at line 93 of file edwards_pairing.cpp.

94{
95 return (this->c_ZZ == other.c_ZZ &&
96 this->c_XY == other.c_XY &&
97 this->c_XZ == other.c_XZ);
98}

Friends And Related Symbol Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream & out,
const edwards_Fq3_conic_coefficients & cc )
friend

Definition at line 100 of file edwards_pairing.cpp.

101{
102 out << cc.c_ZZ << OUTPUT_SEPARATOR << cc.c_XY << OUTPUT_SEPARATOR << cc.c_XZ;
103 return out;
104}
#define OUTPUT_SEPARATOR

◆ operator>>

std::istream & operator>> ( std::istream & in,
edwards_Fq3_conic_coefficients & cc )
friend

Definition at line 106 of file edwards_pairing.cpp.

107{
108 in >> cc.c_ZZ;
110 in >> cc.c_XY;
112 in >> cc.c_XZ;
113 return in;
114}
void consume_OUTPUT_SEPARATOR(std::istream &in)

Member Data Documentation

◆ c_XY

edwards_Fq3 libff::edwards_Fq3_conic_coefficients::c_XY

Definition at line 63 of file edwards_pairing.hpp.

◆ c_XZ

edwards_Fq3 libff::edwards_Fq3_conic_coefficients::c_XZ

Definition at line 64 of file edwards_pairing.hpp.

◆ c_ZZ

edwards_Fq3 libff::edwards_Fq3_conic_coefficients::c_ZZ

Definition at line 62 of file edwards_pairing.hpp.


The documentation for this struct was generated from the following files: