Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Luhn algorithm

From Wikipedia, the free encyclopedia
Simple checksum formula
"Luhn" redirects here. For people named Luhn, seeLuhn (surname).

TheLuhn algorithm orLuhn formula (creator:IBM scientistHans Peter Luhn), also known as the "modulus 10" or "mod 10"algorithm, is a simplecheck digit formula used to validate a variety of identification numbers.[a] The purpose is to design a numbering scheme in such a way that when a human is entering a number, a computer can quickly check it for errors.

The algorithm is in thepublic domain and is in wide use today. It is specified inISO/IEC 7812-1.[2] It is not intended to be acryptographically secure hash function; it was designed to protect against accidental errors, not malicious attacks. Mostcredit card numbers and manygovernment identification numbers use the algorithm as a simple method of distinguishing valid numbers from mistyped or otherwise incorrect numbers.

Description

[edit]

The check digit is computed as follows:

  1. Drop the check digit from the number (if it's already present). This leaves the payload.
  2. Start with the payload digits and doubleevery second digit (a digit in an odd position in reversed order) when numbered from the left.
  3. Process the payload from right-to-left.If a doubled digit exceeds 9, subtract 9 from the digit.
  4. Sum all the resulting digits (including the ones that were not doubled).
  5. The check digit is calculated by(10(smod10))mod10{\displaystyle (10-(s{\bmod {1}}0)){\bmod {1}}0}, where s is the sum from step 3. This is the smallest number (possibly zero) that must be added tos{\displaystyle s} to make a multiple of 10.
  6. Other valid formulas giving the same value are9((s+9)mod10){\displaystyle 9-((s+9){\bmod {1}}0)},(10s)mod10{\displaystyle (10-s){\bmod {1}}0}, and10s/10s{\displaystyle 10\lceil s/10\rceil -s}. Note that the formula(10s)mod10{\displaystyle (10-s){\bmod {1}}0} will not work in all environments due to differences in how negative numbers are handled by themodulo operation.

Example for computing check digit

[edit]

Assume an example of an account number 1789372997 (just the "payload", check digit not yet included):

Digits reversed7992739871
Multipliers2121212121
==========
149182143188141
Sum digits5
(1+4)
9
 
9
(1+8)
2
 
5
(1+4)
3
 
9
(1+8)
8
 
5
(1+4)
1
 

The sum of the resulting digits is 56.

The check digit is equal to(10(56mod10))mod10=4{\displaystyle (10-(56{\bmod {1}}0)){\bmod {1}}0=4}.

This makes the full account number read 17893729974.

Example for validating check digit

[edit]
  1. Drop the check digit (last digit) of the number to validate. (e.g. 17893729974 → 1789372997)
  2. Calculate the check digit (see above)
  3. Compare your result with the original check digit. If both numbers match, the result is valid.(e.g. (givenCheckDigit = calculatedCheckDigit) ⇔ (isValidCheckDigit)).

Strengths and weaknesses

[edit]

The Luhn algorithm will detect all single-digit errors, as well as almost all transpositions of adjacent digits. It will not, however, detect transposition of the two-digit sequence09 to90 (or vice versa). It will detect most of the possible twin errors (it will not detect2255,3366 or4477).

Other, more complex check-digit algorithms (such as theVerhoeff algorithm and theDamm algorithm) can detect more transcription errors. TheLuhn 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.

The algorithm appeared in a United States Patent[1] for a simple, hand-held, mechanical device for computing the checksum. The device took the mod 10 sum by mechanical means. Thesubstitution 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.

Pseudocode implementation

[edit]

The following function takes a card number, including the check digit, as an array of integers and outputstrue if the check digit is correct,false otherwise.

function isValid(cardNumber[1..length])    sum := 0    parity := length mod 2for i from 1 to (length - 1)doif i mod 2 == paritythen            sum := sum + cardNumber[i]elseif cardNumber[i] > 4then            sum := sum + 2 * cardNumber[i] - 9else            sum := sum + 2 * cardNumber[i]end ifend forreturn cardNumber[length] == ((10 - (sum mod 10)) mod 10)end function

Uses

[edit]

The Luhn algorithm is used in a variety of systems, including:

References

[edit]
  1. ^abUS patent 2950048A, Luhn, Hans Peter, "Computer for Verifying Numbers", published 23 August 1960, issued 23 August 1960 
  2. ^"Annex B: Luhn formula for computing modulus-10 "double-add-double" check digits".Identification cards — Identification of issuers — Part 1: Numbering system (standard).International Organization for Standardization &International Electrotechnical Commission. January 2017.ISO/IEC 7812-1:2017.
  3. ^Publication 199: Intelligent Mail Package Barcode (IMpb) Implementation Guide for Confirmation Services and Electronic Payment Systems(PDF) (28th ed.).United States:United States Postal Service. 10 October 2023.Archived(PDF) from the original on 17 November 2023. Retrieved29 November 2023.
  4. ^Albanese, Ilenia (10 August 2022)."A cosa serve la Partita Iva? Ecco cosa sapere" [What is a VAT number for? Here's what to know].Partitaiva.it (in Italian).Archived from the original on 29 June 2024. Retrieved29 June 2024.

Notes

[edit]
  1. ^It is described inUS patent 2950048A, granted on 23 August 1960.[1]

External links

[edit]
Retrieved from "https://en.wikipedia.org/w/index.php?title=Luhn_algorithm&oldid=1337419563"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp