The Privacy Paradox of Digital Voting
Every election requires answering two contradictory questions:
- 1Who voted?: You need to verify that only eligible voters participate
- 2How did they vote?: You must ensure no one can connect a voter's identity to their ballot choice
In paper-based elections, this paradox is solved with physical separation: the double-envelope system, where the outer envelope identifies the voter and the inner envelope conceals the ballot. The envelopes are physically separated before counting.
In digital elections, the separation must be architectural, built into the system design so that even the platform operator cannot link a voter's identity to their ballot choice. This is not a feature you can bolt on after the fact. It's a fundamental design decision.
Most online voting platforms get this wrong. They store voter identity and ballot data in the same database, separated only by application logic, meaning anyone with database access (administrators, developers, attackers) can reconstruct the link between voter and ballot.
This article is for informational purposes only and does not constitute legal advice. Data protection requirements vary by jurisdiction, organization type, and applicable regulations. Consult a qualified attorney for advice specific to your situation.
Why Ballot Secrecy Matters Legally
State Law Requirements
Several states explicitly require ballot secrecy for HOA and condominium elections:
| State | Secret Ballot Requirement | Authority |
|---|---|---|
| California | Required for all elections using the secret ballot process | Civil Code §5100(a) |
| Nevada | Required for board elections | NRS 116.31034 |
| Colorado | Required for contested elections | C.R.S. §38-33.3-310 |
| Florida | Required for condo elections | §718.128 |
| Arizona | Per governing documents | ARS §33-1812 |
Federal Considerations
While no federal law specifically governs HOA election privacy, several frameworks apply depending on the organization type:
- NLRB union elections: The National Labor Relations Act has the Board conduct representation elections by secret ballot under §9(c)(1), 29 U.S.C. §159(c)(1). (§159(e) is a different animal — the union-security deauthorization ballot triggered by a petition from 30% of the unit — and is often miscited for this.)
- Credit union elections: NCUA model FCU Bylaws require ballot secrecy (Appendix A to 12 CFR Part 701)
- LMRDA union officer elections: Secret ballot explicitly required (29 U.S.C. §481(c))
The Retaliation Risk
Ballot secrecy isn't an abstract principle. It prevents retaliation. In HOA elections, board members who can identify how specific homeowners voted may:
- Selectively enforce rules against opponents
- Deny architectural review requests
- Prioritize maintenance in favorable areas
- Exclude dissenters from committees
In union elections, the retaliation risk is even more direct. Employers who can identify union supporters may engage in discrimination prohibited by the National Labor Relations Act.
How Digital Ballot Secrecy Works
The Wrong Way: Application-Level Separation
Many platforms store votes like this:
| voter_id | ballot_id | choice |
|---|---|---|
| member_123 | ballot_456 | Candidate A |
| member_789 | ballot_012 | Candidate B |
Even if the application doesn't display this link to administrators, the data exists in the database. A subpoena, a breach, or a rogue administrator can reconstruct every voter's choice.
The Right Way: Permanent Separation
Secure voting platforms use permanent ballot separation:
- 1Authentication layer: Verifies the voter's identity and eligibility
- 2Token generation: Issues a one-time, anonymous voting token
- 3Ballot casting: The token is used to cast a ballot with no link back to the voter's identity
- 4Audit verification: The voter can verify their ballot was counted without revealing their choice
The critical property: the authentication system knows who voted but not how; the ballot system knows how each ballot was cast but not by whom. These two systems never share data.
Where we stand on this, since we are the ones writing the article. vote.direct ships both anonymous designs, and the organizer picks one per election under Ballot secrecy. Standard Anonymous is the middle design: the voter-to-ballot link exists in restricted storage, because vote changes, proxy handling and recounts are built on it, and every surface an association can reach (results, the per-ballot view, CSV and PDF exports, the audit package) refuses to show it. That defeats the threat homeowners actually raise, which is a board president looking up how a neighbour voted; it does not defeat a subpoena or a breach. Sealed ballot is the permanent-separation design. It hands out no tokens; it simply never writes the link: the roster records only that a member voted, the ballot carries no identifier and is dated only to the day, the confirmation code is shown once and never e-mailed, the audit trail records who voted but never which ballot, and the box is shuffled when voting closes. No one, not the board and not vote.direct staff, can tie a sealed ballot to a member or see a tally before close. Sealed ballots are built for California Civil Code §5110(c)(4)(B)(iv) and Fla. Stat. §718.128(2)(d), which require a system to make the connection impossible, and the California and Florida board-election templates preset them. Ask every vendor you shortlist which of the designs on this page they actually ship, and for which elections.
Data Collection in Digital Elections
What Data Is Collected
Every online voting platform collects some combination of:
| Data Type | Purpose | Sensitivity |
|---|---|---|
| Name and email | Voter identification and notification | Medium |
| Phone number | SMS verification and reminders | Medium |
| Government ID image | Identity verification | High |
| IP address | Fraud detection and audit trail | Medium |
| Device information | Security and fraud prevention | Low |
| Ballot choice | Recording the vote | Critical |
| Timestamp | Audit trail | Low |
This one gets heated
Should community boards be required to use independent election administrators?
Data Minimization Principles
The best platforms follow data minimization: collecting only what's necessary for the election and deleting what's no longer needed:
- Government ID images: Should be verified and discarded, not stored permanently
- IP addresses: Retained for audit purposes during the election, then anonymized
- Ballot choices: Stored separately from voter identity, aggregated after tabulation
- Contact information: Used only for election communications, not marketing
Retention and Deletion
| Data Type | Recommended Retention | Reason |
|---|---|---|
| Aggregate results | Permanent | Official record |
| Anonymized audit trail | 1–3 years | Dispute resolution |
| Voter roll | Duration of election + 1 year | Compliance verification |
| Government ID data | Verify and delete immediately | Privacy and liability |
| Individual ballot data | 1 year or per state requirement | Challenge period |
Platform Evaluation: Privacy Checklist
Before selecting an online voting platform, verify these privacy protections:
Architecture
- [ ] Permanent separation of identity from the ballot (a sealed-ballot mode): voter identity and ballot choice stored with nothing that joins them
- [ ] Encryption in transit and at rest: confirm the provider's actual transport and storage controls
- [ ] Zero-knowledge verification: voters can verify their ballot was counted without revealing their choice
- [ ] No administrator access to individual ballots: platform operators cannot see how specific voters voted
Data Protection
- [ ] Explicit data processing agreement: clear terms on what data is collected, how it's used, and when it's deleted
- [ ] Data minimization: platform collects only what's necessary
- [ ] Automated deletion: government ID images and unnecessary data deleted after verification
- [ ] SOC 2 Type II or equivalent certification: independent audit of security and privacy controls
Compliance
- [ ] Secret ballot support: ballot secrecy is architecturally enforced, not just policy
- [ ] State law compliance: platform meets specific state requirements for ballot secrecy
- [ ] Audit trail without privacy compromise: complete election record that doesn't expose individual ballot choices
- [ ] Data portability: election data can be exported and the platform doesn't hold data hostage
Transparency
- [ ] Published privacy policy: clear, specific, and updated
- [ ] Breach notification commitment: defined timeline and process for notifying affected parties
- [ ] Third-party data sharing disclosure: whether data is shared with analytics providers, advertisers, or other third parties
- [ ] Right to deletion: members can request deletion of their personal data after the election
Vote.Direct's Privacy Architecture
Here is what vote.direct actually does, stated at the level of detail the checklist above asks for. Some of it is stronger than the market average and one item is a per-election choice rather than a fixed property, so read all five:
- Anonymous ballots by access control: in anonymous mode, voter identity is withheld from published results, from the per-ballot admin view, from CSV and PDF exports and from the audit package. No board member, election committee or association administrator can tie a ballot to a member
- Two anonymous designs, chosen per election: in standard Anonymous mode the voter-to-ballot link exists in our database, in restricted storage, because vote changes, proxy handling and recounts are built on it; vote.direct staff, and anyone who compelled or breached our database, could in principle reconstruct it. In Sealed ballot mode the ballot is stored with no link to the voter at all: no field, no audit entry and no receipt log ties a ballot to a member, and the box is shuffled at close, so there is no stored link for us, a subpoena or a breach to reconstruct. Sealed ballots are built for Cal. Civ. Code §5110(c)(4)(B)(iv) and Fla. Stat. §718.128(2)(d) / §720.317(1)(b)4.
- Government ID verification: run by a specialist identity-verification provider. Document images go to that provider and never reach our servers. We store the verification outcome plus the name, date of birth and document type returned, which is what makes the roster match defensible
- Automatic data lifecycle: election data follows defined retention schedules, sized to the one-year ballot retention most states require
- Infrastructure: hosted on providers holding their own SOC 2 attestations. That covers the hosting layer, and it is not a certification of vote.direct as an application
If your election requires the destroyed-link model rather than the withheld-link model, choose Sealed ballots for that election (the California and Florida board-election templates preset it) and confirm the rest of the procedure with counsel.
- No advertising or analytics data sharing: voter data is never shared with third parties for non-election purposes
The Bottom Line
Every organization that runs an election online takes on a data protection obligation, to its members, to regulators, and to the integrity of the process itself. Ballot secrecy isn't a nice-to-have feature; in many jurisdictions, it's a legal requirement.
The platform you choose defines your privacy posture. Platforms that treat ballot secrecy as an application-layer feature rather than an architectural principle are a lawsuit waiting to happen. Platforms that retain government ID images indefinitely are a data breach waiting to happen.
Choose infrastructure that makes the right thing automatic, and the wrong thing impossible.
Sources:
- 1California Civil Code §5100(a): Secret ballot requirements
- 2Nevada NRS 116.31034: Board election ballot secrecy
- 3Colorado C.R.S. §38-33.3-310: Contested election secret ballot
- 4Florida Statutes §718.128: Condominium electronic voting and privacy
- 5National Labor Relations Act, 29 U.S.C. §159(c)(1): Board-conducted representation elections by secret ballot; §159(e): union-security deauthorization ballots
- 6NCUA FCU Bylaws (Appendix A to 12 CFR Part 701): Credit union election procedures
- 7LMRDA 29 U.S.C. §481(c): Union officer election secrecy
This article is general information, not legal advice. We recommend you do your own research and confirm anything you plan to act on. Where this article states law, the section is cited so you can read the primary source yourself rather than take our word for it — that is what the citations are for. Election requirements also turn on your own governing documents, which we have not seen, and statutes are amended. For advice about your community, consult a qualified attorney licensed in your state.
We work hard to verify every citation against the primary source, but laws change and errors happen. If you spot an inaccuracy, email [email protected] and we will correct it. See our editorial standards for how these pages are researched and checked.
How does your organization currently handle votes?
Compare your approach with other community leaders.
Related Resources
Free: HOA Election Checklist
A step-by-step, 7-phase checklist covering notice requirements, quorum rules, ballot secrecy, and audit trail documentation. Includes state-specific notes for FL, CA, TX, CO, VA.
No spam. Unsubscribe anytime.



