FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
🇮🇳 India devs: Add Aadhaar / PAN to the AI identity standard — Soulprint open source (30 min PR)
How-ToWeb Development

🇮🇳 India devs: Add Aadhaar / PAN to the AI identity standard — Soulprint open source (30 min PR)

via Dev.to WebdevManuel Felipe Arias Pineda1mo ago

AI agents make millions of decisions daily in India — and no system verifies if a real person is behind them. Soulprint solves this with ZK Proofs: 100% on-device, open source (MIT), free. 🇮🇳 Aadhaar and PAN are not fully in Soulprint yet. You can complete the implementation in ~30 minutes. Aadhaar / PAN format Aadhaar: 12 digits. Verhoeff algorithm check digit. Format on card: XXXX XXXX XXXX. PAN: 5 uppercase letters + 4 digits + 1 letter (AAAAA9999A). 4th letter = taxpayer type. const IN : CountryVerifier = { countryCode : " IN " , countryName : " India " , documentTypes : [ " aadhaar " , " pan " ], parse ( ocrText : string ): DocumentResult { const aadhaar = ocrText . match ( / (\d{4}\s\d{4}\s\d{4}) / )?.[ 1 ]?. replace ( / \s /g , "" ) ?? ocrText . match ( / (\d{12}) / )?.[ 1 ] ?? "" ; if ( aadhaar ) return { valid : true , doc_number : aadhaar , country : " IN " , document_type : " aadhaar " }; const pan = ocrText . match ( / ([ A-Z ]{5}\d{4}[ A-Z ]) / )?.[ 1 ] ?? "" ; return { va

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
19 views

Related Articles

Week 6 — No New Problems. Just Me and Everything I Already Learned.
How-To

Week 6 — No New Problems. Just Me and Everything I Already Learned.

Medium Programming • 2d ago

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 2d ago

Android Remote Compose:讓 Android UI 不用發版也能更新
How-To

Android Remote Compose:讓 Android UI 不用發版也能更新

Medium Programming • 2d ago

How-To

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

Lobsters • 3d ago

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 3d ago

Discover More Articles