-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pages for circom-mpc and publicly-verifiable-garbled-circuit (#252)
- Loading branch information
Showing
4 changed files
with
71 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { | ||
ProjectCategory, | ||
ProjectContent, | ||
ProjectInterface, | ||
ProjectStatus, | ||
} from "@/lib/types" | ||
|
||
const content: ProjectContent = { | ||
en: { | ||
tldr: "Set of projects designed to compile and run arithmetic and boolean MPC circuits written in Circom.", | ||
description: ` | ||
Circom-MPC is a set of projects designed to compile and run arithmetic and boolean MPC circuits written in Circom. The framework includes circom-2-arithc, a fork of Circom tailored for creating MPC-compatible circuits, and circom-mp-spdz, which combines the compiler with MP-SPDZ, enabling the execution of compiled circuits in MPC. Circom-MPC aims to facilitate the development and deployment of privacy-preserving computations.`, | ||
} | ||
} | ||
|
||
export const circomMpc: ProjectInterface = { | ||
id: "circom-mpc", | ||
category: ProjectCategory.RESEARCH, | ||
projectStatus: ProjectStatus.INACTIVE, | ||
section: "pse", | ||
content, | ||
image: "", | ||
imageAlt: "Circom-MPC", | ||
name: "Circom-MPC", | ||
links: { | ||
github: "https://github.com/namnc/circom-2-arithc", | ||
}, | ||
tags: { | ||
keywords: ["mpc", "circom", "mp-spdz"], | ||
themes: ["research"], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { | ||
ProjectCategory, | ||
ProjectContent, | ||
ProjectInterface, | ||
ProjectStatus, | ||
} from "@/lib/types" | ||
|
||
const content: ProjectContent = { | ||
en: { | ||
tldr: "Publicly verifiable garbled circuit research", | ||
description: ` | ||
We are actively researching on publicly verifiable garbled circuit. This will lead to constant round publicly verifiable 2 party computation. Currently we're exploring two ways to achieve this. The first approach is based on authenticated garbling and vector OLE and the second approach is based on commited OT and zkp. | ||
See more details [here](https://hackmd.io/@namncc/B1md-dp4ke).`, | ||
} | ||
} | ||
|
||
export const publiclyVerifiableGarbledCircuit: ProjectInterface = { | ||
id: "publicly-verifiable-garbled-circuit", | ||
category: ProjectCategory.RESEARCH, | ||
projectStatus: ProjectStatus.ACTIVE, | ||
section: "pse", | ||
content, | ||
image: "", | ||
imageAlt: "Publicly verifiable garbled circuit", | ||
name: "Publicly verifiable garbled circuit", | ||
links: { | ||
website: "https://hackmd.io/@namncc/B1md-dp4ke", | ||
}, | ||
tags: { | ||
keywords: ["mpc", "garbled circuit", "zkp"], | ||
themes: ["research"], | ||
}, | ||
} |