ch.openchvote.votingclient.writein.tasks.TC2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voting-client Show documentation
Show all versions of voting-client Show documentation
This module implements the 'voting client' party of the CHVote protocol.
/*
* Copyright (C) 2024 Berner Fachhochschule https://e-voting.bfh.ch
*
* - 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 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 . -
*/
package ch.openchvote.votingclient.writein.tasks;
import ch.openchvote.algorithms.AlgorithmService;
import ch.openchvote.algorithms.protocols.writein.algorithms.CheckKeyPairProof;
import ch.openchvote.framework.exceptions.TaskException;
import ch.openchvote.protocol.parameters.SecurityParameters;
import ch.openchvote.votingclient.writein.PublicData;
@SuppressWarnings("MissingJavadoc")
public final class TC2 {
static public void
run(int j, PublicData publicData, AlgorithmService algorithmService) {
// select setup parameters
var ES = publicData.get_ES().get();
var SL = ES.get_SL();
// get security parameters
var securityParameters = new SecurityParameters(SL);
// select event data
var pi_j = publicData.get_bold_pi().get(j);
var pk_j = publicData.get_bold_pk().get(j);
var bold_pk_prime_j = publicData.get_bold_PK_prime().get(j);
// perform task
if (!algorithmService.run(CheckKeyPairProof.class, securityParameters, pi_j, pk_j, bold_pk_prime_j)) {
throw new TaskException(TaskException.Type.INVALID_ZKP_PROOF, TC2.class);
}
}
}