Lets say an example
PAN Number is "111222333444555"
In the java code EncryptedPin.java the method extractAccountNumberPart
will generate the output as : -
122233344455
but i think the output should be 222333444555
Please guide me if i went wrong !
I have made a modification in the existing method as described below
accountNumberPart = accountNumber.substring(accountNumber.length() -
12,accountNumber.length());
which was actually
accountNumberPart = accountNumber.substring(accountNumber.length() -
13,accountNumber.length()-1);
please guide me in this regard
thanks
Mohit
>
> Lets say an example
> PAN Number is "111222333444555"
> In the java code EncryptedPin.java the method extractAccountNumberPart
> will generate the output as : -
> 122233344455
I think that is correct?
>
> but i think the output should be 222333444555
> Please guide me if i went wrong !
Was there originally a problem that caused you to examine this code?
With your amendments in place did you successfully exchange PIN blocks
with another system?
--
Mark