-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathluhnmod10.go
68 lines (59 loc) · 1.82 KB
/
luhnmod10.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Package luhnmod10 is a fast and simple in-place implementation of the luhn check algorithm.
package luhnmod10
// Valid returns true if the number string is luhn valid, and false otherwise.
// The number passed to the function must contain only numeric characters otherwise behavior is undefined.
func Valid(number string) bool {
var checksum int
numberLen := len(number)
for i := numberLen - 1; i >= 0; i -= 2 {
n := number[i] - '0'
checksum += int(n)
}
for i := numberLen - 2; i >= 0; i -= 2 {
n := number[i] - '0'
n *= 2
if n > 9 {
n -= 9
}
checksum += int(n)
}
return checksum%10 == 0
}
// Checksum returns the checksum of a number string that can be used to determine if the number satisfies the luhnmod10 validity check. Use Valid to check if a number string is valid.
// The number passed to the function must contain only numeric characters otherwise behavior is undefined.
func Checksum(number string) int {
var checksum int
numberLen := len(number)
for i := numberLen - 1; i >= 0; i -= 2 {
n := number[i] - '0'
checksum += int(n)
}
for i := numberLen - 2; i >= 0; i -= 2 {
n := number[i] - '0'
n *= 2
if n > 9 {
n -= 9
}
checksum += int(n)
}
return checksum
}
// CheckDigit returns the check digit of a number string that can be used as the final digit to make a number string pass the luhnmod10 validity check. Use Valid to check if a number string is valid.
// The number passed to the function must contain only numeric characters otherwise behavior is undefined.
func CheckDigit(number string) int {
var checksum int
numberLen := len(number)
for i := numberLen - 2; i >= 0; i -= 2 {
n := number[i] - '0'
checksum += int(n)
}
for i := numberLen - 1; i >= 0; i -= 2 {
n := number[i] - '0'
n *= 2
if n > 9 {
n -= 9
}
checksum += int(n)
}
return checksum * 9 % 10
}