Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: anon aadhaar page #212

Merged
merged 2 commits into from
Oct 28, 2024
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
41 changes: 39 additions & 2 deletions data/projects/anon-aadhaar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,34 @@ import { ProjectContent, ProjectInterface, ProjectStatus } from "@/lib/types"
const content: ProjectContent = {
en: {
tldr: "Tools for building build privacy-preserving applications using government ID cards, specifically Aadhaar cards in India.",
description: `Anon Aadhaar is a project that allows Aadhaar ID holders to prove their Indian residency, optionally revealing some aspects of their identity while hiding the others. The project provides ZK Circuits, SDK for Javascript and Solidity, a demo application, and integrates with the PCD framework to support a wide range of applications.`,
description: `
### Overview

Anon Aadhaar is a project that allows Aadhaar ID holders to prove their Indian residency, optionally revealing some aspects of their identity while hiding the others. The project provides ZK Circuits, SDK for Javascript and Solidity, a demo application, and integrates with the PCD framework for a better developer experience.

### Features

Anon Aadhaar is a zero knowledge protocol that let Aadhaar owners prove their identity in a privacy preserving way.
Key features include:
- **Selective Disclosure**: If your app request to reveal one of the field from the identity the circuit will reveal it in its output. There only four fields that could be revealed (Age > 18, Gender, State, Pincode). Note that by default the Prover will reveal nothing from the ID.
- **Nullifier**: Nullifier is a unique identifiers derived from data fields, used to prevent double-spending or duplicate proofs without revealing the actual data.
- **Timestamp**: The timestamp of the signature associated with the data is converted into a UNIX UTC format, enabling Timebased One Time Passord verification at the verifier level.

The protocol is served through an SDK containing:
- TypeScript Library: [@anon-aadhaar/core](https://www.npmjs.com/package/@anon-aadhaar/core)
- Solidity Library: [@anon-aadhaar/contracts](https://www.npmjs.com/package/@anon-aadhaar/contracts)
- React Library: [@anon-aadhaar/react](https://www.npmjs.com/package/@anon-aadhaar/react)

You can play with our **mobile prover**, which offer a faster proving time:
- [Anon Aadhaar React Native](https://github.com/anon-aadhaar/anon-aadhaar-react-native)

We developed a prover for [Digilocker](https://www.digilocker.gov.in/), that let you generate ZKPs from official documents stored in the Digolocker App, enabling use cases with proof of degrees, UPI, driver license and more.

### Applications:
- Quick Setup - [Website](https://anon-aadhaar-quick-setup.vercel.app/) | [GitHub](https://github.com/anon-aadhaar/quick-setup)
- Boilerplate On-Chain Voting App - [Website](https://boilerplate.anon-aadhaar.pse.dev/) | [GitHub](https://github.com/anon-aadhaar/boilerplate)
- Anon Digilocker - [Website](https://anon-digilocker.vercel.app/) | [GitHub](https://github.com/anon-aadhaar/anon-digilocker)
`,
},
}

Expand All @@ -13,15 +40,25 @@ export const anonAadhaar: ProjectInterface = {
content,
projectStatus: ProjectStatus.ACTIVE,
image: "anon-aadhaar.svg",
license: "MIT",
name: "Anon Aadhaar",
links: {
website: "https://anon-aadhaar.pse.dev/",
github: "https://github.com/privacy-scaling-explorations/anon-aadhaar",
twitter: "https://twitter.com/AnonAadhaar",
},
tags: {
keywords: ["Anonymity/privacy", "Social", "Identity", "Voting/governance"],
themes: ["build", "play"],
types: ["Legos/dev tools", "Lego sets/toolkits", "Proof of concept"],
builtWith: ["circom", "rsa"],
builtWith: ["circom", "rsa", "TypeScript", "Solidity"],
},
extraLinks: {
play: [
{
label: "Try it out: On-Chain Voting App",
url: "https://boilerplate.anon-aadhaar.pse.dev/",
},
],
},
}
Loading