#ifndef __DECRYPTION_HPP #define __DECRYPTION_HPP #include #include "Bipoint.hpp" #include "Quadripoint.hpp" #include "PrivateKey.hpp" #include "pairing.hpp" int decrypt(const Bipoint& ciphertext, const PrivateKey& private_key); int decrypt(const Bipoint& ciphertext, const PrivateKey& private_key); int decrypt(const Quadripoint& ciphertext, const PrivateKey& private_key); #endif /* __DECRYPTION_HPP */