Tagged Questions
4
votes
2answers
2k views
Generating Luhn Checksums
There are lots of implementations for validating Luhn checksums but very few for generating them. I've come across this one however in my tests it has revealed to be buggy and I don't understand the ...
2
votes
0answers
89 views
Reverse Engineer A Check Sum Calculation Algorithm [closed]
I have a large sample of identifiers consisting of 1 number or 1 letter (month number 1-9,A,B,C), 2 numbers (month day), 4 digits and then finally an alphabetic check character (excluding I and O) - I ...
1
vote
1answer
314 views
Checkdigit algorithm Luhn mod N vs simple sum
Do you know why the Luhn mod N algoritm in order to create the check digit performs a sum by doubling the value of each even placed char instead of perfoming a simple sum of all chars?
In pseudo-code ...