Revision as of 20:33, 21 May 2013 editDonner60 (talk | contribs)Autopatrolled, Extended confirmed users, Pending changes reviewers, Rollbackers235,914 edits Reverted 1 edit by 189.59.23.50 (talk) to last revision by 164.53.222.20. (TW)← Previous edit | Revision as of 20:30, 27 May 2013 edit undoWerdna (talk | contribs)Extended confirmed users6,655 edits →Description: Remove redundant and confusing passage. Summing the digits is identical to subtracting 9 for two digit numbers less than 20Next edit → | ||
Line 7: | Line 7: | ||
The formula verifies a number against its included ], which is usually appended to a partial account number to generate the full account number. This account number must pass the following test: | The formula verifies a number against its included ], which is usually appended to a partial account number to generate the full account number. This account number must pass the following test: | ||
# From the rightmost digit, which is the check digit, moving left, double the value of every second digit; if product of this doubling operation is greater than 9 (e.g., 7 * 2 = 14 |
# From the rightmost digit, which is the check digit, moving left, double the value of every second digit; if product of this doubling operation is greater than 9 (e.g., 7 * 2 = 14). | ||
# Sum the digits of the products (e.g., 10: 1 + 0 = 1, 14: 1 + 4 = 5) together with the undoubled digits from the original number. | # Sum the digits of the products (e.g., 10: 1 + 0 = 1, 14: 1 + 4 = 5) together with the undoubled digits from the original number. | ||
# If the total ] 10 is equal to 0 (if the total ends in zero) then the number is valid according to the Luhn formula; else it is not valid. | # If the total ] 10 is equal to 0 (if the total ends in zero) then the number is valid according to the Luhn formula; else it is not valid. |
Revision as of 20:30, 27 May 2013
The Luhn algorithm or Luhn formula, also known as the "modulus 10" or "mod 10" algorithm, is a simple checksum formula used to validate a variety of identification numbers, such as credit card numbers, IMEI numbers, National Provider Identifier numbers in US and Canadian Social Insurance Numbers. It was created by IBM scientist Hans Peter Luhn and described in U.S. Patent No. 2,950,048, filed on January 6, 1954, and granted on August 23, 1960.
The algorithm is in the public domain and is in wide use today. It is specified in ISO/IEC 7812-1. It is not intended to be a cryptographically secure hash function; it was designed to protect against accidental errors, not malicious attacks. Most credit cards and many government identification numbers use the algorithm as a simple method of distinguishing valid numbers from collections of random digits.
Description
The formula verifies a number against its included check digit, which is usually appended to a partial account number to generate the full account number. This account number must pass the following test:
- From the rightmost digit, which is the check digit, moving left, double the value of every second digit; if product of this doubling operation is greater than 9 (e.g., 7 * 2 = 14).
- Sum the digits of the products (e.g., 10: 1 + 0 = 1, 14: 1 + 4 = 5) together with the undoubled digits from the original number.
- If the total modulo 10 is equal to 0 (if the total ends in zero) then the number is valid according to the Luhn formula; else it is not valid.
Assume an example of an account number "7992739871" that will have a check digit added, making it of the form 7992739871x:
Account number | 7 | 9 | 9 | 2 | 7 | 3 | 9 | 8 | 7 | 1 | x |
---|---|---|---|---|---|---|---|---|---|---|---|
Double every other | 7 | 18 | 9 | 4 | 7 | 6 | 9 | 16 | 7 | 2 | x |
Sum of digits | 7 | 9 | 9 | 4 | 7 | 6 | 9 | 7 | 7 | 2 | =67 |
The check digit (x) is obtained by computing the sum of digits then computing 9 times that value modulo 10 (in equation form, (67 * 9 mod 10)). In algorithm form:
- Compute the sum of the digits (67).
- Multiply by 9 (603).
- The last digit, 3, is the check digit.
(Alternate method) The check digit (x) is obtained by computing the sum of digits then subtracting the units digit from 10 (67 = Units digit 7; 10 − 7 = check digit 3). In algorithm form:
- Compute the sum of the digits (67).
- Take the units digit 7.
- Subtract the units digit from 10.
- The result, 3, is the check digit.
This, makes the full account number read 79927398713.
Each of the numbers 79927398710, 79927398711, 79927398712, 79927398713, 79927398714, 79927398715, 79927398716, 79927398717, 79927398718, 79927398719 can be validated as follows.
- Double every second digit, from the rightmost: (1×2) = 2, (8×2) = 16, (3×2) = 6, (2×2) = 4, (9×2) = 18
- Sum all the individual digits (digits in parentheses are the products from Step 1): x (the check digit) + (2) + 7 + (1+6) + 9 + (6) + 7 + (4) + 9 + (1+8) + 7 = x + 67.
- If the sum is a multiple of 10, the account number is possibly valid. Note that 3 is the only valid digit that produces a sum (70) that is a multiple of 10.
- Thus these account numbers are all invalid except possibly 79927398713 which has the correct check digit.
Strengths and weaknesses
The Luhn algorithm will detect any single-digit error, as well as almost all transpositions of adjacent digits. It will not, however, detect transposition of the two-digit sequence 09 to 90 (or vice versa). It will detect 7 of the 10 possible twin errors (it will not detect 22 ↔ 55, 33 ↔ 66 or 44 ↔ 77).
Other, more complex check-digit algorithms (such as the Verhoeff algorithm and the Damm algorithm) can detect more transcription errors. The Luhn mod N algorithm is an extension that supports non-numerical strings.
Because the algorithm operates on the digits in a right-to-left manner and zero digits affect the result only if they cause shift in position, zero-padding the beginning of a string of numbers does not affect the calculation. Therefore, systems that pad to a specific number of digits (by converting 1234 to 0001234 for instance) can perform Luhn validation before or after the padding and achieve the same result.
Prepending a 0 to odd-length numbers enables you to process the number from left to right rather than right to left, doubling the odd-place digits.
The algorithm appeared in a US Patent for a hand-held, mechanical device for computing the checksum. It was therefore required to be rather simple. The device took the mod 10 sum by mechanical means. The substitution digits, that is, the results of the double and reduce procedure, were not produced mechanically. Rather, the digits were marked in their permuted order on the body of the machine.
Implementation of standard Mod 10
The implementations below are in Python.
Verification of the check digit
def luhn_checksum(card_number): def digits_of(n): return digits = digits_of(card_number) odd_digits = digits even_digits = digits checksum = 0 checksum += sum(odd_digits) for d in even_digits: checksum += sum(digits_of(d*2)) return checksum % 10 def is_luhn_valid(card_number): return luhn_checksum(card_number) == 0
Calculation of the check digit
The algorithm above checks the validity of an input with a check digit. Calculating the check digit requires only a slight adaptation of the algorithm—namely:
- Append a zero check digit to the partial number and calculate checksum
- If the (sum mod 10) == 0, then the check digit is 0
- Else, the check digit = 10 - (sum mod 10)
def calculate_luhn(partial_card_number): check_digit = luhn_checksum(int(partial_card_number) * 10) return check_digit if check_digit == 0 else 10 - check_digit
See also
References
- U.S. patent 2,950,048, Computer for Verifying Numbers, Hans P. Luhn, August 23, 1960.
External links
- Open Source implementation in PowerShell
- Luhn implementations in JavaScript
- Validation of Luhn in PHP
- Ruby: Luhn validation, Luhn generation
- Luhn validation class in C#