1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Step 1
Alice converts her input to a group element x
Step 2
Alice generates a random blinding factor r.
Step 3
Alice blinds her input by computing blinded_input = xr
Step 4
Alice sends the blinded_input to server.
Step 5
Server computes blinded_output = (xr)k, where k is the secret key.
Step 6
Server sends the result back to Alice.
Step 7
Alice can then unblind the produced result by computing output = blinded_output(1/r) = xk, where 1/r is the inverse of r.