pairing.hpp 298 B

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