Files
pse.dev/data/projects/mpz.ts
2025-04-17 14:13:18 +02:00

52 lines
1.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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",
},
],
},
}