mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
81797980f7
URLs automatically rewritten from /search?dist=Foo or /dist/Foo to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization, this is the preferred way to refer to modules on search.cpan.org. This pass brought to you by http://people.freebsd.org/~fenner/fix-search
17 lines
685 B
Plaintext
17 lines
685 B
Plaintext
These subroutines tell you whether a credit card number is
|
|
self-consistent -- whether the last digit of the number is a valid
|
|
checksum for the preceding digits.
|
|
|
|
The validate() subroutine returns 1 if the card number provided passes
|
|
the checksum test, and 0 otherwise.
|
|
|
|
The cardtype() subroutine returns a string containing the type of card:
|
|
"MasterCard", "VISA", and so on. My list is not complete; I welcome
|
|
additions.
|
|
|
|
The generate_last_digit() subroutine computes and returns the last digit
|
|
of the card given the preceding digits. With a 16-digit card, you
|
|
provide the first 15 digits; the subroutine returns the sixteenth.
|
|
|
|
WWW: http://search.cpan.org/dist/Business-CreditCard/
|