Aadhaar-OfflineKYC-Verification
1.0.6
dotnet add package Aadhaar-OfflineKYC-Verification --version 1.0.6
NuGet\Install-Package Aadhaar-OfflineKYC-Verification -Version 1.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aadhaar-OfflineKYC-Verification" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aadhaar-OfflineKYC-Verification" Version="1.0.6" />
<PackageReference Include="Aadhaar-OfflineKYC-Verification" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aadhaar-OfflineKYC-Verification --version 1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Aadhaar-OfflineKYC-Verification, 1.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Aadhaar-OfflineKYC-Verification&version=1.0.6
#tool nuget:?package=Aadhaar-OfflineKYC-Verification&version=1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Aadhaar Offline KYC Verification
Description
This NuGet package enables secure and efficient Offline Aadhaar KYC Verification for Indian citizens. It allows developers to extract and validate Aadhaar KYC data from the ZIP file provided by UIDAI's offline Aadhaar e-KYC service. The package handles ZIP decryption using the share code, extracts XML data, verifies the digital signature, and parses relevant user information like name, address, date of birth, and more.
Key Features
- ✔️ Secure Aadhaar KYC Verification – Extracts and validates Aadhaar KYC data from UIDAI's offline ZIP.
- ✔️ Digital Signature Validation – Ensures data authenticity using X.509 certificate verification.
- ✔️ ZIP Extraction with Password – Securely extracts XML from the Aadhaar ZIP using the share code.
- ✔️ KYC Data Extraction – Parses user details such as name, DOB, address, and photograph.
- ✔️ Easy Integration – Lightweight package with a simple API for seamless integration in .NET applications.
- ✔️ Error Handling & Logging – Robust error handling and logging for better debugging.
How to Use it
Register as dependency injection on program.cs
// Progarm.cs
builder.Services.AddSingleton<IAadhaarKYCService, AadharKYCService>();
Normal, any class where need to do dependency indejection.
public class KYCVerificationCommandHandler(IAadhaarKYCService aadharKYCService)
{
private readonly IAadhaarKYCService _aadharKYCService = aadharKYCService;
}
# here File is type of IFile and Password As String
public sampleClass()
{
var result = await _aadharKYCService.ProcessAadhaarFileAsync(File, Password);
var isValidSignature = _aadharKYCService.VerifySignature(result.Data);
var KYCUserInformation = _aadharKYCService.ExtractKYCUserInformation(result.Data);
var KYCCertificateInformation = _aadharKYCService.ExtractKYCData(result.Data);
}
Usage Scenarios
- Implement Aadhaar-based KYC verification in banking, finance, telecom, and e-commerce applications.
- Automate KYC verification in digital onboarding processes.
- Verify Aadhaar authenticity for regulatory compliance.
Supported Frameworks
- .NET 6.0 and above
- ASP.NET Core applications
- Console applications
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.AspNetCore.Http.Features (>= 5.0.17)
- SharpZipLib (>= 1.4.2)
- System.Security.Cryptography.Xml (>= 9.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.