Documentation ¶
Index ¶
- type E12
- func (e *E12) Add(api frontend.API, e1, e2 E12) *E12
- func (e *E12) Assign(a *bls12377.E12)
- func (e *E12) Conjugate(api frontend.API, e1 E12) *E12
- func (e *E12) CyclotomicSquare(api frontend.API, x E12, ext Extension) *E12
- func (e *E12) CyclotomicSquareCompressed(api frontend.API, x E12, ext Extension) *E12
- func (e *E12) Decompress(api frontend.API, x E12, ext Extension) *E12
- func (e *E12) Expt(api frontend.API, e1 E12, exponent uint64, ext Extension) *E12
- func (e *E12) FinalExponentiation(api frontend.API, e1 E12, genT uint64, ext Extension) *E12
- func (e *E12) Frobenius(api frontend.API, e1 E12, ext Extension) *E12
- func (e *E12) FrobeniusCube(api frontend.API, e1 E12, ext Extension) *E12
- func (e *E12) FrobeniusSquare(api frontend.API, e1 E12, ext Extension) *E12
- func (e *E12) Inverse(api frontend.API, e1 E12, ext Extension) *E12
- func (e *E12) Mul(api frontend.API, e1, e2 E12, ext Extension) *E12
- func (e *E12) MulBy034(api frontend.API, c3, c4 E2, ext Extension) *E12
- func (e *E12) MustBeEqual(api frontend.API, other E12)
- func (e *E12) Neg(api frontend.API, e1 E12) *E12
- func (e *E12) Select(api frontend.API, b frontend.Variable, r1, r2 E12) *E12
- func (e *E12) SetOne(api frontend.API) *E12
- func (e *E12) Square(api frontend.API, x E12, ext Extension) *E12
- func (e *E12) Sub(api frontend.API, e1, e2 E12) *E12
- type E2
- func (e *E2) Add(api frontend.API, e1, e2 E2) *E2
- func (e *E2) Assign(a *bls12377.E2)
- func (e *E2) Conjugate(api frontend.API, e1 E2) *E2
- func (e *E2) Double(api frontend.API, e1 E2) *E2
- func (e *E2) Inverse(api frontend.API, e1 E2, ext Extension) *E2
- func (e *E2) Mul(api frontend.API, e1, e2 E2, ext Extension) *E2
- func (e *E2) MulByFp(api frontend.API, e1 E2, c interface{}) *E2
- func (e *E2) MulByNonResidue(api frontend.API, e1 E2, ext Extension) *E2
- func (e *E2) MustBeEqual(api frontend.API, other E2)
- func (e *E2) Neg(api frontend.API, e1 E2) *E2
- func (e *E2) SetOne(api frontend.API) *E2
- func (e *E2) Square(api frontend.API, x E2, ext Extension) *E2
- func (e *E2) Sub(api frontend.API, e1, e2 E2) *E2
- type E6
- func (e *E6) Add(api frontend.API, e1, e2 E6) *E6
- func (e *E6) Assign(a *bls12377.E6)
- func (e *E6) Inverse(api frontend.API, e1 E6, ext Extension) *E6
- func (e *E6) Mul(api frontend.API, e1, e2 E6, ext Extension) *E6
- func (e *E6) MulBy01(api frontend.API, c0, c1 E2, ext Extension) *E6
- func (e *E6) MulByE2(api frontend.API, e1 E6, e2 E2, ext Extension) *E6
- func (e *E6) MulByFp2(api frontend.API, e1 E6, e2 E2, ext Extension) *E6
- func (e *E6) MulByNonResidue(api frontend.API, e1 E6, ext Extension) *E6
- func (e *E6) MustBeEqual(api frontend.API, other E6)
- func (e *E6) Neg(api frontend.API, e1 E6) *E6
- func (e *E6) Square(api frontend.API, x E6, ext Extension) *E6
- func (e *E6) Sub(api frontend.API, e1, e2 E6) *E6
- type Extension
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type E12 ¶
type E12 struct {
C0, C1 E6
}
E12 element in a quadratic extension
func (*E12) CyclotomicSquare ¶
Granger-Scott's cyclotomic square squares a Fp12 elt in the cyclotomic group https://eprint.iacr.org/2009/565.pdf, 3.2
func (*E12) CyclotomicSquareCompressed ¶
Karabina's compressed cyclotomic square https://eprint.iacr.org/2010/542.pdf Th. 3.2 with minor modifications to fit our tower
func (*E12) Decompress ¶
Decompress Karabina's cyclotomic square result
func (*E12) Expt ¶
Expt compute e1**exponent, where the exponent is hardcoded This function is only used for the final expo of the pairing for bls12377, so the exponent is supposed to be hardcoded and on 64 bits.
func (*E12) FinalExponentiation ¶
FinalExponentiation computes the final expo x**(p**6-1)(p**2+1)(p**4 - p**2 +1)/r
func (*E12) FrobeniusCube ¶
FrobeniusCube applies frob**2 to an fp12 elmt
func (*E12) FrobeniusSquare ¶
FrobeniusSquare applies frob**2 to an fp12 elmt
func (*E12) MustBeEqual ¶
MustBeEqual constraint self to be equal to other into the given constraint system
type E2 ¶
E2 element in a quadratic extension
func (*E2) MulByNonResidue ¶
MulByNonResidue multiplies an fp2 elmt by the imaginary elmt ext.uSquare is the square of the imaginary root
func (*E2) MustBeEqual ¶
MustBeEqual constraint self to be equal to other into the given constraint system
type E6 ¶
type E6 struct {
B0, B1, B2 E2
}
E6 element in a quadratic extension
func (*E6) MulByFp2 ¶
MulByFp2 creates a fp6elmt from fp elmts icube is the imaginary elmt to the cube
func (*E6) MulByNonResidue ¶
MulByNonResidue multiplies e by the imaginary elmt of Fp6 (noted a+bV+cV where V**3 in F^2)
func (*E6) MustBeEqual ¶
MustBeEqual constraint self to be equal to other into the given constraint system
type Extension ¶
type Extension struct {
// contains filtered or unexported fields
}
Extension stores the non residue elmt for an extension of type Fp->Fp2->Fp6->Fp12 (Fp2 = Fp(u), Fp6 = Fp2(v), Fp12 = Fp6(w))
func GetBLS12377ExtensionFp12 ¶
GetBLS12377ExtensionFp12 get extension field parameters for bls12377