File tree Expand file tree Collapse file tree 1 file changed +23
-2
lines changed Expand file tree Collapse file tree 1 file changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,28 @@ The project is in early development.
15
15
16
16
## Examples
17
17
18
- #### [ Secure Multi-Party Voting] ( ./demo/secure_multi_party_voting .ipynb )
18
+ #### [ Secure Multi-Party Voting] ( ./demo/1_secure_multi_party_voting .ipynb )
19
19
20
20
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.**
You can’t perform that action at this time.
0 commit comments