Questions tagged [aadhaar]

Aadhaar is a 12 digit unique-identity number issued to all Indian residents based on their biometric and demographic data.

Aadhaar is a 12 digit unique-identity number issued to all Indian residents based on their biometric and demographic data.

https://en.wikipedia.org/wiki/Aadhaar

28 questions
0
votes
0 answers

Error response in Aadhaar Authentication API for version 2.5 C#

I am implementing project in c# for validating user Aadhaar number. Using API and license keys are as given in the URL for testing purposes. Auth XML format seems correct, Authentication API is returning response status code 510 "Invalid AUTH…
0
votes
0 answers

is there a way to extract the AADHAAR card data from image and display in JSON with masking partial AADHAAR numbers?

I need to provide AADHAAR card photo and need to extract the Data on AADHAAR and display in JSON with masking partial Unique AADHAAR Number from PIL import Image from pytesseract import pytesseract #Define path to tessaract.exe path_to_tesseract =…
Prem J
  • 1
  • 2
0
votes
1 answer

How to mask aadhaar card number from clicked image in android studio

I have created a camera using file provider. In which I’m supposed to click aadhaar card image. The requirement is that we need to mask aadhaar card number in the clicked image. please help.
Ambika
  • 61
  • 1
  • 3
  • 6
0
votes
0 answers

How to verify aadhar number by sending otp to registered mobile phone number in python

How to verify aadhar number by sending otp to registered mobile phone number in python ? Does any one know the code, please help. thank you
Ajay
  • 61
  • 6
0
votes
0 answers

Aadhaar testing certificate expired error, where to get UIDAI latest testing keys?

I am trying to run the code from this repository https://github.com/kbhokray/aadhaar But getting error 570 as the included certificate is expired. I replaced the uidai_auth_stage.cer with the latest file "AuthStaging25082025.cer" from this…
Sujata
  • 42
  • 7
0
votes
1 answer

How to validate Aadhaar XML signature in Python?

I'm trying to do XML signature validation. Here is the link to Aadhaar Paperless Offline e-kyc tutorial https://uidai.gov.in/ecosystem/authentication-devices-documents/about-aadhaar-paperless-offline-e-kyc.html with…
0
votes
3 answers

How to create mobile number hash from Aadhaar Paperless Offline e-kyc PHP

how to solve the mobile number hash from Aadhaar Paperless Offline e-kyc PHP. I have the mobile number. but don't understand the logic. Mobile Number: – This is represented as a hash with following logic. Hashing logic for Mobile Number…
0
votes
1 answer

Parsing and validating Aadhar paperless offline eKYC?

I generated my offline eKYC XML using https://resident.uidai.gov.in/offline-kyc. The XML tag, including the signature is like this -
Sandeepan Nath
  • 9,966
  • 17
  • 86
  • 144
0
votes
0 answers

Laravel: api to get address details from qr code of aadhar card

I am developing an application which scans the QR/Bar code of uploaded Aadhar code and gives the address details from that. Is it possible? Is there any API to get the address details from scanning QR code of Indian Aadhar card?
Dushyant Joshi
  • 3,672
  • 3
  • 28
  • 52
0
votes
0 answers

Error Code 998 while authenticating Aadhaar

I downloaded Aadhaar API Source Code from github (https://github.com/souvikdc9/aadhaarapi.net ) . I never modified anything in that project and started running by setting "Uidai.Aadhaar.Sample" as startup project. All the data inside project is…
PavanKumar GVVS
  • 859
  • 14
  • 45
-1
votes
1 answer

java - Understanding byte array with delimeters

I'm trying to read AADHAAR QR code, a govt ID card in India. The user manual says - Scanned data contains the following data fields in given sequence, which is embedded in byte array with the delimiter of byte value ”255”…
Gissipi_453
  • 1,250
  • 1
  • 25
  • 61
-1
votes
2 answers

how to integrate aadhaar verification API to java(spring mvc) web application from uidai site

I'm doing a spring mvc web application, In that i want to integrate the aadhaar verication as a part in registration process of the web app. i've searched for so many solutions on the web for this, but I couldn't find any solution there. So,Any one?…
Pravinkumar
  • 129
  • 2
  • 10
-3
votes
2 answers

Regex to identify Aadhaar Number

I have been facing some challenges in writing regex to search Aadhaar number in DLP. Actually the inbuilt pattern is as below : \b[2-9][0-9]{11}\b \b[2-9][0-9]{3} [0-9]{4} [0-9]{4}\b However above pattern works fine but it gives many false cases by…
1
2