emilianobonassi / zkFHE

Verifiable and confidential computation based on ZKP and FHE, powered by risc0 zkVM.
Apache License 2.0
76 stars 2 forks source link

zkFHE

Verifiable and confidential computation based on ZKP and FHE, powered by risc0 zkVM.

A PoC to demonstrate an approach for private computation on a public environment w/o give up data availability (since data can stay encrypted).

FHE provides confidentiality, ZKP provides the proof that the algorithm run following the rules.

How it works

It's based on a tweaked version of Cupcake, a library for the (additive version of) Fan-Vercauteren homomorphic encryption scheme. Tweaked so it can run in the risc0 zkVM (i.e. single thread, custom getrandom).

It runs the following protocol

  1. (Host) Create public and secret key
  2. (Host) Encrypt two numbers with the secret key
  3. (Host) Pass the public key and the two encrypted numbers to the guest vm
  4. (Guest) Fetch the encrypted data and init the FHE framework
  5. (Guest) Perform the (encrypted) sum on the encrypted data using the public key
  6. (Guest) Send back the encrypted sum to the host
  7. (Host) Decrypt the sum with secret key

TL;DR host has the guarantee the guest run the algorithm (ZKP) and that the guest did not access to the unecrypted data (FHE).

How to run

First, install Rust if you don't already have it, then

cargo run --release

If you see 107 (19+88) at the end of the run, it worked.

PS: proof generation takes a lot (2hrs)