pairing.hpp 291 B

12345678910111213
  1. #ifndef __PAIRING_HPP
  2. #define __PAIRING_HPP
  3. #include "Quadripoint.hpp"
  4. #include "Bipoint.hpp"
  5. #include "optate.h"
  6. void OptimalAte(fp12e_t rop, const curvepoint_fp_t op1,const twistpoint_fp2_t op2);
  7. Quadripoint pairing(Bipoint<curvepoint_fp_t> op1,Bipoint<twistpoint_fp2_t> op2);
  8. #endif