zcash_voting 1.0.0

Client-side library for Zcash shielded voting: ZKP delegation and vote-commitment proofs (Halo 2), ElGamal encryption, governance PCZT construction, Merkle witness generation, and SQLite round-state persistence.
Documentation
1
2
3
4
5
6
7
//! Public error surface for wallet integrations.
//!
//! The voting API uses one error type across setup, precompute, delegation, and
//! persistence operations. Re-exporting it from this module gives downstream
//! SDKs a stable import path even as internal modules move.

pub use crate::types::VotingError;