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
1answer
149 views

Luhn or Verhoeff algorithm for credit card numbers

First of all, I'm not really sure if this should be on stackoverflow but I thought I would try to ask anyway. In the past I have always used the luhn algorithm for error checking in credit card ...
0
votes
5answers
372 views

Algorithm for message code validation

If you read this thread before - forget everything I wrote, I must have been drunk when I wrote it. I'm starting over: I'm currently working on a project where we will be using some sort of algorithm ...
-1
votes
1answer
79 views

Luhn algorithm with only integers [closed]

I have to write a program with a Luhn check that is a different variation than the default. Double all even place digits and add them together If the result of doubling, such as 2*9=18, is 2 digits, ...