Validating Aadhaar Numbers with Verhoeff Algorithm in Java.

Aadhaar is a unique identification number issued by the Unique Identification Authority of India (UIDAI) to residents of India. Aadhaar is mainly used as a tool for identity verification, it is essential to ensure that the numbers are entered or transmitted correctly to avoid errors and potential misuse.

The Verhoeff algorithm is used in Aadhaar validation since it provides an added layer of reliability and accuracy in data entry and processing systems.

Java Implementation to Validate Aadhaar Numbers with Verhoeff Algorithm.

Create java class with name VerhoeffAlgorithm.java

import java.util.regex.Pattern;

public class VerhoeffAlgorithm {
static int[][] d = new int[][]
 {
 {0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
 {1, 2, 3, 4, 0, 6, 7, 8, 9, 5},
 {2, 3, 4, 0, 1, 7, 8, 9, 5, 6},
 {3, 4, 0, 1, 2, 8, 9, 5, 6, 7},
 {4, 0, 1, 2, 3, 9, 5, 6, 7, 8},
 {5, 9, 8, 7, 6, 0, 4, 3, 2, 1},
 {6, 5, 9, 8, 7, 1, 0, 4, 3, 2},
 {7, 6, 5, 9, 8, 2, 1, 0, 4, 3},
 {8, 7, 6, 5, 9, 3, 2, 1, 0, 4},
 {9, 8, 7, 6, 5, 4, 3, 2, 1, 0}
 };

static int[][] p = new int[][]
 {
 {0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
 {1, 5, 7, 6, 2, 8, 3, 0, 9, 4},
 {5, 8, 0, 3, 7, 9, 6, 1, 4, 2},
 {8, 9, 1, 6, 0, 4, 3, 5, 2, 7},
 {9, 4, 5, 3, 1, 2, 6, 8, 7, 0},
 {4, 2, 8, 6, 5, 7, 3, 9, 0, 1},
 {2, 7, 9, 3, 8, 0, 6, 4, 1, 5},
 {7, 0, 4, 6, 9, 1, 3, 2, 5, 8}
 };

static int[] inv = {0, 4, 3, 2, 1, 5, 6, 7, 8, 9};

public static boolean validateVerhoeff(String num){
int c = 0;
int[] myArray = StringToReversedIntArray(num);
for (int i = 0; i < myArray.length; i++){
   c = d[c][p[(i % 8)][myArray[i]]];
 }
return (c == 0);
}

private static int[] StringToReversedIntArray(String num){
int[] myArray = new int[num.length()];
for(int i = 0; i < num.length(); i++){
   myArray[i] = Integer.parseInt(num.substring(i, i + 1));
 }
myArray = Reverse(myArray);
return myArray;
}

private static int[] Reverse(int[] myArray){
int[] reversed = new int[myArray.length];
for(int i = 0; i < myArray.length ; i++){
  reversed[i] = myArray[myArray.length - (i + 1)];
 }
 return reversed;
}

public static boolean validateAadharNumber(String aadharNumber){
 Pattern aadharPattern = Pattern.compile("\\d{12}");
 boolean isValidAadhar = aadharPattern.matcher(aadharNumber).matches();
 if(isValidAadhar){
 isValidAadhar = VerhoeffAlgorithm.validateVerhoeff(aadharNumber);
 }
 return isValidAadhar;
}
}

Now call validateAadharNumber and pass aadhar number to validate, It will return true if aadhar

number is valid else false.

public class ValidateAadharNo {
public static void main(String[] args) {
 String aadharNumber ="432323232112";
  if(Verhoef fAlgorithm.validateAadharNumber(aadharNumber)) {
    System.out.println("Given Aadhar Number is valid :"+aadharNumber);
  }else {
    System.out.println("Given Aadhar Number is not valid :"+aadharNumber);
  }
 }
}

 

Output when we pass valid Aadhar Number

Validating Aadhaar Numbers with Verhoeff Algorithm

Output when we pass invalid Aadhar Number

 

Validating Aadhaar Numbers with Verhoeff Algorithm
Spring Boot CRUD Operation Tutorial

 

Leave a Reply

Your email address will not be published. Required fields are marked *