123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef LINEFUNCTION_H
- #define LINEFUNCTION_H
- #include "fp2e.h"
- #include "curvepoint_fp.h"
- #include "twistpoint_fp2.h"
- void linefunction_add_ate(
- fp2e_t rop11,
- fp2e_t rop12,
- fp2e_t rop13,
- twistpoint_fp2_t rop2,
- const twistpoint_fp2_t op1,
- const twistpoint_fp2_t op2,
- const curvepoint_fp_t op3,
- const fp2e_struct_t *r2
- );
- void linefunction_double_ate(
- fp2e_t rop11,
- fp2e_t rop12,
- fp2e_t rop13,
- twistpoint_fp2_t rop2,
- const twistpoint_fp2_t op1,
- const curvepoint_fp_t op3
- );
- #endif
|