This repository has been archived on 2022-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
DEMOS2/static/js/vote_audit.js

56 lines
2 KiB
JavaScript
Raw Normal View History

2018-09-11 07:31:47 +00:00
function getBytes(arr) {
for(var i = 0; i < arr.length; i++) {
arr[i] = parseInt(arr[i]);
}
return new Uint8Array(arr);
}
2018-08-16 21:17:16 +00:00
$('#begin-test').click(function() {
2018-09-11 07:31:47 +00:00
var ctx = new CTX("BN254CX");
var ciphertext = {
C1: null,
C2: null,
r: null
}
2018-08-16 21:17:16 +00:00
var ballot = JSON.parse(sjcl.decrypt($('#SK').val(), $('#ballot').text()));
2018-08-29 13:29:27 +00:00
var votes = ballot['encryptedVotes'];
2018-08-16 21:17:16 +00:00
$('#ballot-content').text(JSON.stringify(votes));
2018-08-29 13:29:27 +00:00
var voteNum = 0, optionNum = 0;
// For each encrypted vote within the ballot...
votes.forEach(function(vote) {
voteNum++;
$('#ballot-result').text($('#ballot-result').text() + "Vote " + voteNum + ": \n ");
2018-09-11 07:31:47 +00:00
// For each encrypted fragment within the vote (i.e. the encoded vote for one option)...
2018-08-29 13:29:27 +00:00
vote['fragments'].forEach(function(fragment) {
optionNum++;
$('#ballot-result').text($('#ballot-result').text() + "Option " + optionNum + ": \n ");
var encoding = "";
2018-09-11 07:31:47 +00:00
2018-09-15 15:25:36 +00:00
var C1Bytes = getBytes(fragment['C1'].split(","));
var C2Bytes = getBytes(fragment['C2'].split(","));
var rBytes = getBytes(fragment['r'].split(","));
2018-09-11 07:31:47 +00:00
2018-09-15 15:25:36 +00:00
ciphertext.C1 = new ctx.ECP.fromBytes(C1Bytes);
ciphertext.C2 = new ctx.ECP.fromBytes(C2Bytes);
ciphertext.r = new ctx.BIG.fromBytes(rBytes);
2018-09-11 07:31:47 +00:00
// For each pair of C1,C2 values (i.e. one ballot's ciphertext) and the randomness used in its encryption r,
// test whether C2/(C1)^r = g^0 or g^1, and record g's exponent.
2018-09-15 15:25:36 +00:00
//var c1 = ctx.PAIR.GTpow(ciphertext.C1, ciphertext.r);
var m = ciphertext.C2.div(Math.pow(ciphertext.C1, ciphertext.r));
2018-09-11 07:31:47 +00:00
console.log("m = "+m);
encoding += (m) ? "1" : "0";
2018-08-16 21:17:16 +00:00
2018-08-29 13:29:27 +00:00
// Somehow, this string of 1s and 0s here needs to become _one_ 1 or 0 to signify whether the option was
// voted for or not.
$('#ballot-result').text($('#ballot-result').text() + encoding + "\n ");
});
});
2018-08-16 21:17:16 +00:00
});