vote up 3 vote down star
2

What algorithm to use to calculate a check digit for a list of digits?
The length of the list is between 8 and 12 digits.

see also:
How to generate a verification code/number?

flag

65% accept rate

5 Answers

vote up 7 vote down check

The Luhn algorithm is good enough for the credit card industry...

link|flag
Luhn algorithm is way to weak, try swapping the first digit with the last digit - ooops, valid! – eyze Sep 12 at 15:31
vote up 5 vote down

As RichieHindle points out, the Luhn algorithm is pretty good. It will detect (but not correct) any one error or transposition (except a transposition of 0 and 9).

You could also consider the algorithm for ISBN check digits, although for old-style ISBN, the check digit is sometimes "X", which may be a problem for you if you're using integer fields. New-style ISBN doesn't seem to have that problem. Wikipedia doesn't go in to the theoretical properties of the system, but I remember studying ISBN numbers in my coding theory course long ago, so I think they are pretty good :-)

link|flag
+1 for the ISBN check digit. That brought me back memories... – Stefano Borini Jul 16 at 21:13
vote up 0 vote down

Verhoeff, there is nothing better IMO.

link|flag
vote up -2 vote down

And the range of the integers is?

link|flag
Can you clarify? – Piotr Dobrogost Jul 17 at 10:03
3  
-1 Shouldn't this be a comment? – eyze Sep 12 at 15:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.