keygen.hpp 186 B

12345678910
  1. #ifndef __KEYGEN_HPP
  2. #define __KEYGEN_HPP
  3. #include "Scalar.hpp"
  4. #include "PrivateKey.hpp"
  5. #include "PublicKey.hpp"
  6. void keygen(PublicKey& public_key, PrivateKey& private_key);
  7. #endif