From 68c06b7b1a324d9bb80d8f404b2e12b3c1ac9d77 Mon Sep 17 00:00:00 2001 From: fria <138676274+friadev@users.noreply.github.com> Date: Sun, 29 Jun 2025 05:50:38 -0500 Subject: [PATCH] fix ordering --- blog/posts/multi-party-computation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/blog/posts/multi-party-computation.md b/blog/posts/multi-party-computation.md index 0045b17a..ecea4294 100644 --- a/blog/posts/multi-party-computation.md +++ b/blog/posts/multi-party-computation.md @@ -88,16 +88,16 @@ Instead of boolean circuits, the BGW protocol uses arithmetic circuits. These al The BGW protocol utilizes [Shamir's Secret Sharing](https://web.mit.edu/6.857/OldStuff/Fall03/ref/Shamir-HowToShareASecret.pdf), which relies on polynomials instead of addition. This allows for more efficiency in multiplication and allows for setting a threshold where only a certain number of shares need to be present in order to reconstruct the secret. -### Real-World Usage - -As MPC saw gradual optimizations and improvements, it grew from an interesting thought experiment to something that could have real-world uses. - #### Less Communication The BGW protocol doesn't require as much communication between parties, partly thanks to its use of Shamir's secret sharing which works well with arithmetic operations. Additionally, it doesn't require Oblivious Transfer or zero-knowledge proofs. Its use of Shamir's secret sharing and error correction codes instead provides the same properties in a more efficient way. +### Real-World Usage + +As MPC saw gradual optimizations and improvements, it grew from an interesting thought experiment to something that could have real-world uses. + #### Danish Sugar Beet Auction The first instance of MPC being used in a real-world scenario wouldn't occur until 2008. @@ -114,4 +114,4 @@ The solution was so successful that it was used every year until 2015 when it wa The first test run of MPC was a massive success and the potential was now proven. -#### \ No newline at end of file +#### The Boston \ No newline at end of file