Skip to content

Commit df2f325

Browse files
committed
Add Shamir notebook to PryVote README
1 parent 5b5d842 commit df2f325

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

projects/pryvote/README.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,28 @@ The project is in early development.
1515

1616
## Examples
1717

18-
#### [Secure Multi-Party Voting](./demo/secure_multi_party_voting.ipynb)
18+
#### [Secure Multi-Party Voting](./demo/1_secure_multi_party_voting.ipynb)
1919

2020
POC of secure multi-party voting.
21-
No credential verification/SSI in place at the moment.
21+
Each vote is encrypted and split
22+
between multiple vote counters.
23+
At the end of voting,
24+
the vote counters combine
25+
their encrypted shares
26+
to reveal the aggregate result.
27+
28+
**No credential verification/SSI in place at the moment.**
29+
30+
#### [Shamir Secret Sharing](./demo/2_shamir_secret_sharing_voting.ipynb)
31+
32+
The Shamir Secret Sharing protocol
33+
is similar to SMPV,
34+
however only a subset of vote counters
35+
are required for the aggregate result
36+
to be decrypted.
37+
Therefore,
38+
this protocol is somewhat robust
39+
to malicious
40+
vote counters.
41+
42+
**No credential verification/SSI in place at the moment.**

0 commit comments

Comments
 (0)