Main > Free Download Search >

Free mastercard software for linux

mastercard

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4
CreditCard Validator 1.8

CreditCard Validator 1.8


The CreditCard Validator will help you tell: (1) if a credit card number is valid (2) which credit card vendor handles that number. It validates the prefix and the checkdigit. It does *not* contact the credit card company to ensure that number has actually been issued and that the account is in good standing. It will also tell you which of the following credit card companies issued the card: Amex, Diners Club, Carte Blanche,Discover... more>>

CreditCard Validator - The CreditCard Validator will help you tell:

1. if a credit card number is valid,

2. which credit card vendor handles that number.

It is a simple Applet to demonstrate the use of the ValidateCreditCard class.

It validates the prefix and the checkdigit. It does *not* contact the credit card company to ensure that number has actually been issued and that the account is in good standing.

It will also tell you which of the following credit card companies issued the card: Amex, Diners Club, Carte Blanche, Discover, enRoute, JCB, MasterCard or Visa.

ATM cards use a different secret scheme which this program does not handle. Unfortunately, there is not even a reliable way to tell an ATM card from a credit card just by the number.

It is primarily designed to be included in your own Java program, though it can be used standalone or as an Applet.

To install, Extract the zip download with Winzip, available from http://www.winzip.com (or similar unzip utility) into any directory you please, often C: -- ticking off the (user folder names) option. To run as an application, type:

java -jar C:commindprodcreditcardcreditcard.jar

adjusting as necessary to account for where the jar file is.

You must have Java version 1.1 or later installed to use this package.

See http://mindprod.com/jgloss/installingjava.html for details.


Enhancements:
Version 1.8

convert to JDK 1.5. simplify code using enum.


System Requirements:
<<less
Download (670Kb)
Added: 2008-03-06 License: Free Price: Free
12 downloads
CashCow 1.1.0

CashCow 1.1.0


CashCow is a library for clearing Internet payment transactions with the Danish PBS through an SSL connection. more>>
CashCow is a library for clearing Internet payment transactions with the Danish PBS through an SSL connection.
CashCow clears the following kinds of transactions between a customer and the PBS:
- Dankort
- VISA/Dankort
- Eurocard
- MasterCard
- Visa
- Visa Electron
- JCB
- Diners (*)
- American Express (*)
- Forbrugsforeningen (*)
- Ikano Finans kort (*)
(*) To accept this, you need a Merchant Agreement with the card provider in question.
<<less
Download (0.038MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1088 downloads
Laplock 0.0.5

Laplock 0.0.5


Laplock project locks your computer or laptop using a media card such as USB memory, SD, MMC, or a Memory Stick. more>>
Laplock project locks your computer or laptop using a media card such as USB memory, SD, MMC, or a Memory Stick. Once you register a unique card, the program starts xlock or xscreensaver when it is removed and stops it once it is plugged in again.
INSTALLATION
you need: udev, the userspace dev tools. This does
not work with devfs.
you can execute everything you want, but a screensaver
would be the best. so install xlock or xscreensaver
1) just type make to compile laplock.
2) type make install to install the binary to /usr/bin
and the sample conf file to /etc/
(you can type make DESTDIR=what/ever/ install to
install it for packages or so.)
3) edit /etc/laplock.conf.example and move it to
/etc/laplock.conf.
and youre done. have fun.
CONFIGURATION
in version 0.0.3 you only need 3 variables to set.
DEVICE
the device to watch. fire up udevmonitor
and plug in a card into your reader. normally
there are 3 lines with add@ and many shit.
(also the device)
UUID
close udevmonitor and go to /dev/disk/by-uuid/
there is a new file with the unique id of your
card.
EXECUTE
this command will be started, when you insert
your mastercard. xlock is very nice and works
good.
Enhancements:
- Debug mode was implemented with laplock -d.
- A lot of code cleaning was done in laplock.c and udev.h.
- An application is started with fork() instead of with system() and bash.
- getopt_long is used for parameters now.
- Nice indent schemes were added to the Makefile.
<<less
Download (0.011MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
968 downloads
Data::Type 0.01.04

Data::Type 0.01.04


Data::Type is a Perl module with versatile data and value types. more>>
Data::Type is a Perl module with versatile data and value types.

SYNOPSIS

use Data::Type qw(:all);
use Error qw(:try);

try
{
verify $email , EMAIL;
verify $homepage , URI(http);
verify $cc , CREDITCARD( MASTERCARD, VISA );
verify $answer_a , YESNO;
verify $gender , GENDER;
verify one , ENUM( qw(one two three) );
verify [qw(two six)], SET( qw(one two three four five six) ) );
verify $server_ip4 , IP(v4);
verify $server_ip6 , IP(v6);

verify A35231AH1 , CINS;
verify 14565935 , ISSN;
verify DE , LANGCODE;
verify German , LANGNAME;

verify 012345678905, UPC();
verify 5276440065421319, CREDITCARD( MASTERCARD ) );

verify ATGCAAAT , BIO::DNA;
verify AUGGGAAAU , BIO::RNA;

verify 01001001110110101, BINARY;
verify 0F 0C 0A, HEX;

verify 0 , DEFINED;
verify 234 , NUM( 20 );
verify 1 , BOOL( true );
verify 100 , INT;
verify 1.1 , REAL;

my $foo = bless( 123, SomeThing );

verify $foo , REF;
verify $foo , REF( qw(SomeThing Else) );
verify [ bar ] , REF( ARRAY );

verify x 20 , VARCHAR( 20 );
verify 2001-01-01 , DATE( MYSQL );
verify 16 Nov 94 22:28:20 PST , DATE( DATEPARSE );
verify 9999-12-31 23:59:59, DATETIME;
verify 1970-01-01 00:00:00, TIMESTAMP;
verify -838:59:59 , TIME;
verify 2155 , YEAR;
verify 69 , YEAR(2);
verify 0 x 20 , TINYTEXT;
verify 0 x 20 , MEDIUMTEXT;
verify 0 x 20 , LONGTEXT;
verify 0 x 20 , TEXT;

verify 80 , PORT;
verify www.cpan.org, DOMAIN;
}
catch Type::Exception with
{
my $e = shift;

printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;

foreach my $entry ( testplan( $e->type ) )
{
printf "texpecting it %s %s ", $entry->[1] ? is : is NOT, $entry->[0]->info();
}
};

# believe it or not, this really works

foreach ( EMAIL, WORD, CREDITCARD( MASTERCARD, VISA ), BIO::DNA, HEX )
{
print $_->info;
print $_->usage;
print $_->export; # does it have other names
print $_->param; # what are my choice i.e. [yes,no]
print $_->isa( IType::Business ); # is it a Business related type ?
print $_->VERSION; # first apperance in Data::Type release
}

# tied interface (alias typ)

try
{
typ ENUM( qw(DNA RNA) ), ( my $a, my $b );

print "a is typed" if istyp( $a );

$a = DNA; # $alias only accepts DNA or RNA
$a = RNA;
$a = xNA; # throws exception

untyp( $alias );
}
catch Type::Exception ::with
{
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
};

dverify( $email, EMAIL ) or die $!;

my $g = Data::Type::Guard->new(

allow => [ Human, Others ], # blessed objects of that type

tests =>
{
email => EMAIL( 1 ), # mxcheck ON ! see Email::Valid
firstname => WORD,
social_id => [ NUM, VARCHAR( 10 ) ],
contacts => sub { my %args = @_; exists $args{lucy} },
}
);

$g->inspect( $h );

# compact version

overify { email => EMAIL( 1 ), firstname => WORD }, $object_a, $object_b;

print toc();

print catalog();

This module supports versatile data and value types. Out of the ordinary it supports parameterised types (like databases have i.e. VARCHAR(80) ). When you try to feed a typed variable against some odd data, this module explains what he would have expected.

<<less
Download (0.022MB)
Added: 2006-10-02 License: Perl Artistic License Price:
1117 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1