123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #ifndef FP12E_H
- #define FP12E_H
- #include "fp6e.h"
- #include "scalar.h"
- #ifdef BENCH
- unsigned long long multp12cycles; unsigned long long nummultp12;
- unsigned long long sqp12cycles; unsigned long long numsqp12;
- unsigned long long sqp12norm1cycles; unsigned long long numsqp12norm1;
- unsigned long long invp12cycles; unsigned long long numinvp12;
- #endif
- typedef struct fp12e_struct fp12e_struct_t;
- struct fp12e_struct
- {
- fp6e_t m_a;
- fp6e_t m_b;
- };
- typedef fp12e_struct_t fp12e_t[1];
- void fp12e_set(fp12e_t rop, const fp12e_t op);
- void fp12e_set_fp6e(fp12e_t rop, const fp6e_t a, const fp6e_t b);
- void fp12e_setone(fp12e_t rop);
- void fp12e_setzero(fp12e_t rop);
- int fp12e_iseq(const fp12e_t op1, const fp12e_t op2);
- int fp12e_isone(const fp12e_t op);
- int fp12e_iszero(const fp12e_t op);
- void fp12e_cmov(fp12e_t rop, const fp12e_t op, int c);
- void fp12e_conjugate(fp12e_t rop, const fp12e_t op2);
- void fp12e_add(fp12e_t rop, const fp12e_t op1, const fp12e_t op2);
- void fp12e_sub(fp12e_t rop, const fp12e_t op1, const fp12e_t op2);
- void fp12e_mul(fp12e_t rop, const fp12e_t op1, const fp12e_t op2);
- void fp12e_mul_fp6e(fp12e_t rop, const fp12e_t op1, const fp6e_t op2);
- void fp12e_square(fp12e_t rop, const fp12e_t op);
- void fp12e_mul_line(fp12e_t rop, const fp12e_t op1, const fp2e_t op2, const fp2e_t op3, const fp2e_t op4);
- void fp12e_pow_vartime(fp12e_t rop, const fp12e_t op, const scalar_t exp);
- void fp4e_square(fp2e_t rop1, fp2e_t rop2, const fp2e_t op1, const fp2e_t op2);
- void fp12e_special_square_finexp(fp12e_t rop, const fp12e_t op);
- void fp12e_invert(fp12e_t rop, const fp12e_t op);
- void fp12e_frobenius_p(fp12e_t rop, const fp12e_t op);
- void fp12e_frobenius_p2(fp12e_t rop, const fp12e_t op);
- void fp12e_mul_scalar(fp12e_t rop, const fp12e_t op1, const scalar_t op2);
- void fp12e_print(FILE *outfile, const fp12e_t op);
- #endif
|