1 name: hjugement-protocol
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 0.0.10.20191104
7 synopsis: A cryptographic protocol for the Majority Judgment.
9 This work-in-progress library aims at implementing an online voting protocol
10 named <https://eprint.iacr.org/2013/177.pdf Helios-C> (Helios with Credentials)
11 by its authors from the <https://www.cnrs.fr/ CNRS>,
12 the <http://www.loria.fr INRIA>
13 and the <https://www.univ-lorraine.fr/ Université de Lorraine>:
14 <http://www.loria.fr/~cortier/ Véronique Cortier>,
15 <https://dgalindo.es/ David Galindo>,
16 <http://www.loria.fr/~gaudry/ Pierrick Gaudry>,
17 <http://stephane.glondu.net/ Stéphane Glondu>
18 and Malika Izabachène.
20 * A large-public introduction (in french) to Helios-C is available here:
21 <https://members.loria.fr/VCortier/files/Papers/Bulletin1024-2016.pdf Bulletin de la société informatique de France – numéro 9, novembre 2016>.
22 * A more scientific (yet understandable) introduction (in english) to Belenios
23 (an implementation of Helios-C) is available here:
24 <https://hal.inria.fr/hal-02066930/document Belenios: a simple private and verifiable electronic voting system>.
26 The main properties of this protocol are:
28 * /fully correct/: the published result are proven to correspond
29 to the (sum of) intended votes of the voters,
30 while accounting for a malicious bulletin board (BB) (adding fake ballots)
31 by requiring a registration authority (RA)
32 (responsible for generating and sending voters' credentials).
33 Assuming that the BB and the RA are not simultaneously dishonest.
35 * /verifiable/: each voter is able to check that:
36 his\/her ballot did contribute to the outcome (/individual verifiability/),
37 and that the tallying authorities did their job properly (/universal verifiability/).
39 * /private/: the identities of the voters who cast a vote are not publicly revealed.
40 extra-doc-files: README.md
43 stability: experimental
44 author: Julien Moutinho <julm+hjugement@autogeree.net>
45 maintainer: Julien Moutinho <julm+hjugement@autogeree.net>
46 bug-reports: Julien Moutinho <julm+hjugement@autogeree.net>
51 tested-with: GHC==8.6.5
56 Source-Repository head
57 location: git://git.autogeree.net/hjugement
64 Voting.Protocol.Arithmetic
65 Voting.Protocol.Credential
66 Voting.Protocol.Cryptography
67 Voting.Protocol.Election
70 Voting.Protocol.Trustee
71 Voting.Protocol.Trustee.Indispensable
73 Voting.Protocol.Version
74 default-language: Haskell2010
81 GeneralizedNewtypeDeriving
87 NoMonomorphismRestriction
97 -Wincomplete-uni-patterns
98 -Wincomplete-record-updates
100 -- -fhide-source-paths
104 , base64-bytestring >= 1.0
109 -- , fixed-vector >= 1.1
110 -- , hashable >= 1.2.6
113 -- , monad-classes >= 0.3
118 , transformers >= 0.5
119 , unordered-containers >= 0.2.8
121 Test-Suite hjugement-protocol-test
122 type: exitcode-stdio-1.0
123 hs-source-dirs: tests
131 HUnit.Trustee.Indispensable
136 default-language: Haskell2010
143 GeneralizedNewtypeDeriving
146 MultiParamTypeClasses
149 NoMonomorphismRestriction
159 -Wincomplete-uni-patterns
160 -Wincomplete-record-updates
162 -- -fhide-source-paths
168 -- , hashable >= 1.2.6
170 -- , monad-classes >= 0.3
172 -- , reflection >= 2.1
177 , transformers >= 0.5
178 -- , unordered-containers >= 0.2.8
180 Benchmark hjugement-protocol-benchmark
181 type: exitcode-stdio-1.0
182 hs-source-dirs: benchmarks
184 default-language: Haskell2010
194 GeneralizedNewtypeDeriving
197 MultiParamTypeClasses
200 NoMonomorphismRestriction
210 -Wincomplete-uni-patterns
211 -Wincomplete-record-updates
223 , transformers >= 0.5