server.cpp 532 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #include "server.hpp"
  2. PrsonaServer::PrsonaServer()
  3. {
  4. }
  5. void PrsonaServer::add_new_client(PrsonaPublicKey longTermPublicKey)
  6. {
  7. }
  8. void PrsonaServer::epoch()
  9. {
  10. }
  11. void PrsonaServer::receive_vote(vector<CurveBipoint> vote, Proof pi, PrsonaPublicKey shortTermPublicKey)
  12. {
  13. }
  14. void PrsonaServer::calculate_vote_tally()
  15. {
  16. }
  17. void PrsonaServer::rerandomize_vote_matrix()
  18. {
  19. }
  20. void PrsonaServer::distribute_new_scores()
  21. {
  22. }
  23. bool PrsonaServer::verify_vote_proof(CurveBipoint vote, Proof pi, PrsonaPublicKey shortTermPublicKey)
  24. {
  25. }