Eos/eosweb/core/static/js/booth_worker.js

79 lines
2.7 KiB
JavaScript
Raw Normal View History

2017-11-23 21:07:16 +11:00
/*
Eos - Verifiable elections
Copyright © 2017-2021 RunasSudo (Yingtong Li)
2017-11-23 21:07:16 +11:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
window = self; // Workaround for libraries
isLibrariesLoaded = false;
2019-01-14 17:54:31 +11:00
eosjs = null;
2017-12-11 13:53:25 +11:00
function generateEncryptedVote(election, answers, should_do_fingerprint) {
if (election._name === 'eos.psr.election.PSRElection') {
encrypted_answers = [];
for (var q_num = 0; q_num < answers.length; q_num++) {
answer_json = answers[q_num];
answer = eosjs.eos.core.objects.EosObject.deserialise_and_unwrap(answer_json, null);
encrypted_answer = eosjs.eos.psr.election.BlockEncryptedAnswer.encrypt(election.public_key, answer, election.questions.__getitem__(q_num).max_bits() + 32); // +32 bits for the length
encrypted_answers.push(eosjs.eos.core.objects.EosObject.serialise_and_wrap(encrypted_answer, null));
}
postMessage({
encrypted_answers: encrypted_answers
});
} else if (election._name === 'eos.base.election.Election') {
encrypted_answers = [];
for (var q_num = 0; q_num < answers.length; q_num++) {
answer_json = answers[q_num];
answer = eosjs.eos.core.objects.EosObject.deserialise_and_unwrap(answer_json, null);
encrypted_answer = eosjs.eos.base.election.NullEncryptedAnswer();
encrypted_answer.answer = answer;
encrypted_answers.push(eosjs.eos.core.objects.EosObject.serialise_and_wrap(encrypted_answer, null));
}
postMessage({
encrypted_answers: encrypted_answers
});
} else {
throw "Don't know how to encrypt ballots in election of type " + election._name;
}
2017-11-23 21:07:16 +11:00
}
onmessage = function(msg) {
2017-12-11 21:17:32 +11:00
try {
if (!isLibrariesLoaded) {
importScripts(
msg.data.static_base_url + "js/eosjs.js"
);
isLibrariesLoaded = true;
2019-01-14 17:54:31 +11:00
eosjs = require("eosjs");
2017-12-11 21:17:32 +11:00
}
2017-11-23 21:07:16 +11:00
2017-12-11 21:17:32 +11:00
if (msg.data.action === "generateEncryptedVote") {
2019-01-14 17:54:31 +11:00
msg.data.election = eosjs.eos.core.objects.EosObject.deserialise_and_unwrap(msg.data.election, null);
2017-12-11 21:17:32 +11:00
generateEncryptedVote(msg.data.election, msg.data.answers);
} else {
throw "Unknown action: " + msg.data.action;
}
} catch (ex) {
if (ex.__repr__) {
throw ex.__repr__();
}
throw ex;
2017-11-23 21:07:16 +11:00
}
}