rust_ev_verifier_lib 0.4.5

Main library for the E-Voting system of Swiss Post.
Documentation
// Copyright © 2025 Denis Morel
//
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU 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 General Public License and
// a copy of the GNU General Public License along with this program. If not, see
// <https://www.gnu.org/licenses/>.

pub mod control_component_ballot_box_payload;
pub mod control_component_shuffle_payload;
pub mod ech_0222;
pub mod tally_component_shuffle_payload;
pub mod tally_component_votes_payload;
mod verifiable_shuffle;

#[derive(Clone, PartialEq, Eq)]
pub enum VerifierTallyDataType {
    ECH0222,
    TallyComponentVotesPayload,
    TallyComponentShufflePayload,
    ControlComponentBallotBoxPayload,
    ControlComponentShufflePayload,
}