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
|
Source: libbusiness-creditcard-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ivan Kohler <ivan-debian@420.am>,
Xavier Guimard <yadd@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
perl
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libbusiness-creditcard-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libbusiness-creditcard-perl.git
Homepage: https://metacpan.org/release/Business-CreditCard
Rules-Requires-Root: no
Package: libbusiness-creditcard-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends}
Multi-Arch: foreign
Description: Perl module to validate or generate credit card checksums and names
Business::CreditCard 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.
.
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.
|