Files
pse.dev/data/projects/cryptkeeper.ts
Kalidou Diagne 926cf9e5dd feat: research page (#316)
* feat: research page
2025-04-09 06:35:30 +01:00

34 lines
1.4 KiB
TypeScript

import {
ProjectCategory,
ProjectContent,
ProjectInterface,
ProjectStatus,
} from "@/lib/types"
const content: ProjectContent = {
en: {
tldr: "A browser extension for secure, portable anonymous identity management across applications.",
description:
"CryptKeeper is a browser extension that generates Semaphore and RLN proofs for websites, providing a secure and portable solution for managing anonymous identity secrets across different applications. It simplifies the integration of zero-knowledge (ZK) identities and proofs into applications, allowing developers to focus on building the front-end and logic of their applications. By handling complex aspects of cryptography, circuits, caching, and storage, CryptKeeper enables users to interact with decentralized applications (dapps) without revealing their private identity secrets. It is aimed at building secure community standards for the growing ZK ecosystem.",
},
}
export const cryptkeeper: ProjectInterface = {
id: "cryptkeeper",
projectStatus: ProjectStatus.INACTIVE,
category: ProjectCategory.APPLICATION,
section: "archived",
content,
image: "cryptkeeper.webp",
name: "CryptKeeper",
links: {
github: "https://github.com/CryptKeeperZK",
},
tags: {
keywords: ["Anonymity/privacy", "Social", "Identity"],
themes: ["build"],
types: ["Application", "Infrastructure/protocol", "Lego sets/toolkits"],
builtWith: ["semaphore", "rln"],
},
}