client.cpp 444 B

123456789101112131415161718192021222324252627282930313233343536
  1. #include "client.hpp"
  2. PrsonaClient::PrsonaClient()
  3. {
  4. }
  5. void PrsonaClient::receive_score(Ciphertext score, Proof pi, Scalar newSeed)
  6. {
  7. }
  8. void PrsonaClient::make_vote(vector<Scalar> vote)
  9. {
  10. }
  11. void PrsonaClient::use_reputation()
  12. {
  13. }
  14. bool PrsonaClient::verify_reputation_proof(Proof pi, PrsonaPublicKey shortTermPublicKey)
  15. {
  16. }
  17. Proof PrsonaClient::generate_vote_proof(Scalar vote)
  18. {
  19. }
  20. Proof PrsonaClient::generate_usage_proof()
  21. {
  22. }