Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ import { postQuantumCryptography } from "./projects/post-quantum-cryptography"
import { machinaIo } from "./projects/machina-iO"
import { plasmaFold } from "./projects/plasma_fold"
import { vOPRF } from "./projects/vOPRF"
import { mpz } from "./projects/mpz"
import { clientSideProving } from "./projects/client-side-proving"

/**
Expand Down Expand Up @@ -113,4 +114,5 @@ export const projects: ProjectInterface[] = [
machinaIo,
plasmaFold,
vOPRF,
mpz
]
51 changes: 51 additions & 0 deletions data/projects/mpz.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import {
ProjectCategory,
ProjectContent,
ProjectInterface,
ProjectStatus,
} from "@/lib/types"

const content: ProjectContent = {
en: {
tldr: "A safe, performant, modular and portable multi-party computation (MPC) library.",
description: `mpz (*pronounced as “em-peasy”*) is a collection of Rust-based libraries for multi-party computation (MPC), designed to be safe, performant and modular.

Built with portability in mind, mpz runs natively or in the browser via WebAssembly (WASM). It serves as the core MPC implementation behind [TLSNotary](tlsn), but its architecture is broadly applicable across privacy-preserving and cryptographic use cases.

mpz is part of Privacy & Scaling Explorations’ broader effort to advance practical cryptographic tooling. It is dual-licensed under Apache-2.0 and MIT to encourage open-source collaboration.`,
},
}

export const mpz: ProjectInterface = {
id: "mpz",
projectStatus: ProjectStatus.ACTIVE,
category: ProjectCategory.DEVTOOLS,
section: "pse",
content,
image: "",
name: "mpz",
license: "MIT or Apache-2.0",
links: {
github: "https://github.com/privacy-scaling-explorations/mpz",
},
tags: {
themes: ["build", "play"],
types: [
"Legos/dev tools",
"Infrastructure/protocol"
],
builtWith: ["rust"],
keywords: [
"Anonymity/privacy",
"mpc",
],
},
extraLinks: {
play: [
{
label: "mpz-play (Exercises to get familiar with mpz)",
url: "https://github.com/th4s/mpz-play",
},
],
},
}