optate.h 392 B

1234567891011121314151617
  1. /*
  2. * File: dclxvi-20130329/optate.h
  3. * Author: Ruben Niederhagen, Peter Schwabe
  4. * Public Domain
  5. */
  6. #ifndef OPTATE_H
  7. #define OPTATE_H
  8. #include "curvepoint_fp.h"
  9. #include "twistpoint_fp2.h"
  10. #include "fp12e.h"
  11. void optate(fp12e_t rop, const twistpoint_fp2_t op1, const curvepoint_fp_t op2);
  12. void optate_miller(fp12e_t rop, const twistpoint_fp2_t op1, const curvepoint_fp_t op2);
  13. #endif