pairing.hpp 212 B

1234567891011121314
  1. #ifndef __PAIRING_HPP
  2. #define __PAIRING_HPP
  3. #include "Quadripoint.hpp"
  4. #include "Bipoint.hpp"
  5. extern "C" {
  6. #include "optate.h"
  7. }
  8. Quadripoint pairing(const CurveBipoint& op1, const TwistBipoint& op2);
  9. #endif