1 package civitas.common.mix.voteelementrevelation;
2
3 import static org.mockito.Mockito.mock;
4
5 import civitas.crypto.reencryptfactor.ElGamalReencryptFactorTestData;
6
7 public interface MixVoteElementRevelationTestData extends ElGamalReencryptFactorTestData {
8
9 MixVoteElementRevelation VOTE_ELEMENT_REVELATION_MOCK = mock(MixVoteElementRevelation.class);
10
11 MixVoteElementRevelation VOTE_ELEMENT_REVELATION = new MixVoteElementRevelation(
12 ELGAMAL_REENCRYPT_FACTOR_E, ELGAMAL_REENCRYPT_FACTOR_EPRIME, 0, "nonce".getBytes());
13 }