networkClient.hpp 416 B

12345678910111213141516
  1. #ifndef __PRSONA_NETWORK_CLIENT_HPP
  2. #define __PRSONA_NETWORK_CLIENT_HPP
  3. #include "client.hpp"
  4. class PrsonaNetworkClient : public PrsonaClient {
  5. public:
  6. // CONSTRUCTORS
  7. PrsonaNetworkClient(
  8. const std::vector<Proof>& generatorProof,
  9. const Twistpoint& elGamalBlindGenerator,
  10. const BGNPublicKey& serverPublicKey,
  11. const size_t numServers);
  12. };
  13. #endif