Setup:
- Consider a prover and a verifier .
- A common input is known to both and .
- A secret input (the "witness") is known only to .
Protocol:
- and interact for rounds.
- In each round, sends a message to , sends a challenge to , and sends a response to .
- At the end of the interaction, outputs a decision (Accept or Reject) based on the messages it has received.
Mathematically, this can be modeled as follows:
- computes , where is a random value, and sends to - is the "Announcement" function, used by the Prover to generate an initial message.
- computes , where is a random value, and sends to - is the "Challenge" function, used by the Verifier to create a challenge for the Prover.
- computes and sends to - is the "Zero-Knowledge Response" function, used by the Prover to respond to the Verifier's challenge.
- computes and accepts if and rejects if - is the "Decision" function, used by the Verifier to decide whether to accept or reject the Prover's claim.
This protocol satisfies the following properties:
- Completeness: If satisfy the relation , then for any computed by according to the protocol, accepts with high probability.
- Soundness: If do not satisfy the relation , then for any computed by and any computed by according to the protocol, rejects with high probability.
- Zero-Knowledgeness: For any verifier strategy , there exists a simulator such that for any satisfying , the distribution of transcripts between is close to the distribution of transcripts between .
These are the three properties that we want to achieve in a ZKP. The first two are pretty straightforward: if the prover and verifier follow the protocol, then the verifier will accept if the statement is true and reject if the statement is false.
The last point is what makes this a zero-knowledge proof: no matter how behaves, there's a simulator that can create a transcript that looks just like a real interaction between and , without knowing the secret .
So why isn't a SHA256 password hash matching scheme a ZKP?
This was a pretty stupid question I had when I first started learning about ZKs. It's not a stupid question, it was intuitive at the time because I didn't truly understand ZKs. But a hashing scheme is not a ZK, a ZKP has certain requirements (outlined above).
-
Interactive Process: ZKPs are typically interactive, involving a series of exchanges between the Prover and Verifier. The Prover doesn't simply present a proof; the Verifier actively participates in the process by sending challenges to the Prover. In the case of password hashing, the process is non-interactive. The user submits a password, it gets hashed, and the hash is compared with the stored value. This is not explicitly outlined, but you'll see why this is important as we go on.
-
Zero-Knowledge Property: In a ZKP, the Verifier learns nothing more than the fact that the statement is true. In the case of password hashing, if the hash function is somehow compromised, or if the hashed passwords are not stored securely, an attacker could learn more than just whether the password is correct or not. They could potentially learn the actual password.
-
Completeness and Soundness: While password hashing does have completeness (if the user provides the correct password, they will be authenticated) and soundness (an incorrect password will not authenticate), these alone do not make it a ZKP.
-
Simulation: A critical aspect of ZKPs is the ability to simulate the Verifier's view without the Prover's secret input. The Verifier's view in a ZKP should be simulatable without knowledge of the Prover's secret. In password hashing, there is no such simulation process.
-
Use of randomness in the challenge: In a ZKP, the Verifier's challenge should be random. In password hashing, the challenge is not random; it is the hash of the password.