A Zero-Knowledge (ZK) payment proof system built with Noir, demonstrating privacy-preserving verification of payments using ASN.1 encoded certificates.
Along with this project our team also primarily proposes implementing ASN.1 parsing capabilities into the Noir ecosystem to handle real-world certificate formats (e.g., DER-encoded certificates from payment gateways).
🔗 ASN.1 Parser full Spec Sheet for Grant proposal:
ASN.1 Parser Proposal and Specification Sheet
🚀 Live Frontend:
https://zkpay-six.vercel.app/
📦 Presentation Slides:
Canva Slides
Today’s digital payments are typically verified by revealing full transaction details to third parties (e.g., merchants, employers, paymentId ..). This raises concerns over privacy and data exposure.
Key challenges:
- Need to prove payment occurred without sharing sensitive info.
- Digital certificates (in ASN.1 format) are the standard output of payment gateways, but they are not natively parsable in Noir.
We built a Zero-Knowledge Payment Proof Generator that allows users to:
- Upload an ASN.1 encoded payment certificate.
- Parse the certificate to extract payer, receiver, amount, payment ID, signature, and public key.
- Feed extracted data into a Noir Zero-Knowledge circuit that verifies the signature and generates a ZK proof.
- Allow organizations to verify the proof without seeing full payment details.
Example use cases:
- Prove you’ve paid for a Netflix subscription without showing your full bank statement.
- An employee can prove they received salary payment privately.

To fully enable this and similar use cases, Noir must support ASN.1 parsing.
🔗 ASN.1 Parser Spec Sheet:
ASN.1 Parser Proposal and Specification Sheet
Currently, developers must pre-parse certificates outside of Noir, breaking the privacy and trustless workflow. A native ASN.1 parser would unlock:
- Payment proofs
- Secure ID verification
- PKI-based authentication
- And more 🚀
- Clone the repo:
git clone https://github.com/sanjay-sol/zkpay cd zkpay/backend
- Install depencies
npm install
- Run the server
npm run dev
- Clone the repo:
git clone https://github.com/sanjay-sol/zkpay cd zkpay/frontend
- Install depencies
yarn
- Run the server
yarn dev
- Add more real-world payment gateway integrations (Stripe, Razorpay, etc.).
- Build a universal payment proof dashboard for verifiers.
- Extend the UI/UX for better onboarding and customization.
- Many more while building /......🚀🚀🚀🚀
- Collaborate with the Noir community to upstream ASN.1 parsing library.
- Full implementation of DER encoding/decoding inside Noir circuits.
- Publish ASN.1 helper utilities to abstract common parsing tasks.
- Many more ....🚀🚀🚀