dvas0004 / NerdNotes

A collection of notes: things I'd like to remember while reading technical articles, technical questions I couldn't answer, and so on.
12 stars 0 forks source link

Homomorphic Encryption vs Secure Multi Party Computation #33

Open dvas0004 opened 5 years ago

dvas0004 commented 5 years ago

HE is the process of performing operations directly on encrypted data

HE is more computationally expensive, but doesn't require any interaction between parties. MPC is computationally cheaper, but requires more interaction

SMPC splits the data over multiple workers (or parties) in such a way as the original data cannot be recomputed without more than half the parties colluding together.

A simple example of a multi party computation: MPC_example

dvas0004 commented 5 years ago

https://mortendahl.github.io/2017/04/17/private-deep-learning-with-mpc/