1
vote
1answer
217 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 …
0
votes
2answers
281 views
mod 11 check digit with regex
Is it possible to create a mod 11 check digit routine with a regex statement?
THe nubmer is a 10 digit number,
Step 1:
A = (2nd number * 2) + (3rd number * 4) + (4th number * 8) + (5th number * 5) + …
0
votes
3answers
258 views
USPS ACS Keyline Check Digit
I have implemented the "MOD 10" check digit algorithm using SQL, for the US Postal Service Address Change Service Keyline according to the method in their document, but it seems I'm getting the wrong …
