#ifndef __KEYGEN_HPP #define __KEYGEN_HPP #include "Scalar.hpp" #include "PrivateKey.hpp" #include "PublicKey.hpp" void keygen(PublicKey& public_key, PrivateKey& private_key); #endif