519
|
1 |
#!/usr/bin/python2.7
|
|
2 |
# -*- coding: UTF8 -*-
|
|
3 |
|
|
4 |
"""
|
|
5 |
Copyright: Eesti Vabariigi Valimiskomisjon
|
|
6 |
(Estonian National Electoral Committee), www.vvk.ee
|
|
7 |
Written in 2004-2013 by Cybernetica AS, www.cyber.ee
|
|
8 |
|
|
9 |
This work is licensed under the Creative Commons
|
|
10 |
Attribution-NonCommercial-NoDerivs 3.0 Unported License.
|
|
11 |
To view a copy of this license, visit
|
|
12 |
http://creativecommons.org/licenses/by-nc-nd/3.0/.
|
|
13 |
"""
|
|
14 |
|
|
15 |
def analyze(ik, vote, votebox):
|
|
16 |
|
|
17 |
# TODO: implement security checks
|
|
18 |
# such as verifying the correct size
|
|
19 |
# of the encrypted vote
|
|
20 |
|
|
21 |
return []
|