Enter Your Token
Your token is hashed in your browser using SHA-256. The original token is never transmitted or stored.
How is my token secured?
Your token is processed entirely in your browser using the crypto.subtle.digest('SHA-256') Web Cryptography API. The process is:
- You enter your token
- The browser creates a SHA-256 hash of it
- Only the hash is stored in localStorage (this device only)
- Your original token is discarded and never leaves your device
- When you vote, the hash is included so the secretary can match it to your token in the membership list
Clearing your browser's localStorage will remove the stored hash.