pcsc-tools-1.4.25/0000755000175000017500000000000012617702130014166 5ustar rousseaurousseaupcsc-tools-1.4.25/gscriptor.gtk1.20000755000175000017500000006007312617677264017166 0ustar rousseaurousseau#!/usr/bin/perl -w # gscriptor: GTK interface to send APDU commands to a smart card # Copyright (C) 2001 Lionel Victor, Ludovic Rousseau # 2002-2003 Ludovic Rousseau # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # gscriptor uses libgtk-perl, please make sure it is correctly installed # on your system use strict; use Gtk; use File::Basename; use Carp; use Chipcard::PCSC; use Chipcard::PCSC::Card; init Gtk; set_locale Gtk; my $strAppName = "gscriptor"; my $strConfigFileName = "$ENV{HOME}/.$strAppName"; my @ResultStruct; my %hConfig; # PCSC related variables my $hContext = new Chipcard::PCSC (); die ("Can't create the Chipcard::PCSC object: $Chipcard::PCSC::errno\n") unless (defined $hContext); my $hCard = new Chipcard::PCSC::Card ($hContext); die ("Can't create the Chipcard::PCSC::Card object: $Chipcard::PCSC::errno\n") unless (defined $hContext); ############################### create widgets ############################### my $wndMain = new Gtk::Window ("toplevel"); my $txtScript = new Gtk::Text (); my $txtResult = new Gtk::Text (); my $rdbASCII = new Gtk::RadioButton("ASCII"); my $rdbHex = new Gtk::RadioButton("Hex", $rdbASCII); my $chkWrap = new Gtk::CheckButton ("Wrap lines"); my $btnRun = new Gtk::Button ("Run"); my $txtStatus = new Gtk::Entry(); ############################## arrange widgets ############################### # arrange_widgets () is used to arrange widgets in the windows. # It allows to conveniently allocate temporary variables for the various # containers and the scrollbars, as well as the menu. # This function also sets some basic properties of the different # widgets used... configuration is therefore grouped in a single place. sub arrange_widgets () { $wndMain->set_title ("$strAppName"); $txtScript->set_editable(1); $txtScript->set_word_wrap(1); $txtResult->set_word_wrap(1); $txtStatus->set_sensitive(0); $txtStatus->set_editable(0); $chkWrap->set_active(1); $rdbHex->set_active(1); # create and bind toolbars my $vscScript = new Gtk::VScrollbar ($txtScript->vadj); my $vscResult = new Gtk::VScrollbar ($txtResult->vadj); # create and set tooltips my $tipScript = new Gtk::Tooltips(); my $tipResult = new Gtk::Tooltips(); my $tipASCII = new Gtk::Tooltips(); my $tipHex = new Gtk::Tooltips(); my $tipRun = new Gtk::Tooltips(); my $tipWrap = new Gtk::Tooltips(); $tipScript->set_tip ($txtScript, "list of APDUs to exchange"); $tipResult->set_tip ($txtResult, "result window"); $tipASCII->set_tip ($rdbASCII, "show ASCII data"); $tipHex->set_tip ($rdbHex, "show hexadecimal data"); $tipRun->set_tip ($btnRun, "run the current script"); $tipWrap->set_tip ($chkWrap, "wrap long lines"); # create and set the menu with the accel_table my @menu_items = ({ path => '/_File', type => '' }, { path => '/File/_New', callback => \&NewScriptFile }, { path => '/File/_Open', accelerator => 'O', callback => \&LoadScriptFile }, { path => '/File/_Save', accelerator => 'S', callback => \&SaveScriptFile }, { path => '/File/Save _As', callback => \&SaveAsScriptFile }, { path => '/File/sep', type => '' }, { path => '/File/_Quit', accelerator => 'Q', callback => \&CloseAppWindow }, { path => '/R_eader', type => '' }, { path => '/Reader/_Connect', accelerator => 'C', callback => \&ConnectDefaultReader }, { path => '/Reader/Reco_nnect', accelerator => 'R', callback => \&ReconnectDefaultReader }, { path => '/Reader/_Disconnect', accelerator => 'D', callback => \&DisconnectDefaultReader }, { path => '/Reader/sep', type => '' }, { path => '/Reader/_Status...', callback => \&DefaultReaderStatus }, { path => '/Ru_n', type => '' }, { path => '/Run/_Run Script', accelerator => 'R', callback => \&RunScript }, { path => '/Run/C_lear Result Area', accelerator => 'L', callback => \&ClearResult }, { path => '/_Settings', type => '' }, { path => '/Settings/Reader', callback => \&ReaderConfig }, { path => '/_Help', type => '' }, { path => '/_Help/About', callback => \&Help }); my $accel_group = new Gtk::AccelGroup(); my $item_factory = new Gtk::ItemFactory( 'Gtk::MenuBar', '
', $accel_group); $item_factory->create_items( @menu_items ); $wndMain->add_accel_group( $accel_group ); # create and arrange box containers my $vbxMainBox = new Gtk::VBox(0,3); my $hbxScriptBox = new Gtk::HBox(0,3); my $vbxScriptBox = new Gtk::VBox(0,10); my $hbxResultBox = new Gtk::HBox(0,3); my $vbxResultBox = new Gtk::VBox(0,3); $hbxScriptBox->add($txtScript); $hbxScriptBox->pack_end($vscScript, 0, 0, 0); $vbxScriptBox->add($hbxScriptBox); $vbxScriptBox->pack_end($btnRun, 0, 0, 0); $vbxScriptBox->pack_end($chkWrap, 0, 0, 0); $vbxScriptBox->set_border_width(5); $hbxResultBox->add($txtResult); $hbxResultBox->pack_end($vscResult, 0, 0, 0); $vbxResultBox->add($hbxResultBox); $vbxResultBox->pack_start($rdbASCII, 0, 0, 0); $vbxResultBox->pack_start($rdbHex, 0, 0, 0); $vbxResultBox->set_border_width(5); # create and fill frame containers my $frmScript = new Gtk::Frame ("Script"); my $frmResult = new Gtk::Frame ("Result"); $frmScript->set_border_width(5); $frmScript->add ($vbxScriptBox); $frmResult->set_border_width(5); $frmResult->add ($vbxResultBox); my $hpaned = new Gtk::HPaned; $hpaned->border_width(5); my $hbxBox = new Gtk::HBox (0,10); $hpaned->add1($frmScript); $hpaned->add2($frmResult); $hbxBox->add($hpaned); $vbxMainBox->pack_start ($item_factory->get_widget( '
' ), 0, 0, 0); $vbxMainBox->add ($hbxBox); $vbxMainBox->pack_end ($txtStatus, 0, 0, 0); $vbxMainBox->show_all(); $wndMain->add($vbxMainBox); } # Connect widgets together $chkWrap->signal_connect('toggled', sub { $txtScript->set_line_wrap($chkWrap->active); } ); $wndMain->signal_connect ("delete_event", \&CloseAppWindow); $btnRun->signal_connect ("clicked", \&RunScript); $rdbASCII->signal_connect('toggled', \&RefreshResult); $rdbHex->signal_connect('toggled', \&RefreshResult); ReadConfigFile(); arrange_widgets(); ############################### create widgets ############################### $txtStatus->set_text ("welcome to the $strAppName application !!! - not connected"); # Show up everything as we should be ready by now $wndMain->show_all(); if (exists $hConfig{'script'}) { unless (ReadScriptFile ($hConfig{'script'})) { MessageBox ("Can not open $hConfig{'script'}: $!", ['OK']); delete $hConfig{'script'}; } } main Gtk; die ("The Gtk event loop failed to start resulting in abnormal program termination...\n"); ######################### application engine follows ######################### sub MessageBox { my $strMessage = shift; my $strTitle = shift unless ref ($_[0]); my @ButtonDescr = @_; my $refCurButtonDescr; my $last_button; # Choose a nice title to our message box $strTitle = $strAppName unless $strTitle; @ButtonDescr = ["OK"] unless @ButtonDescr; my $dlgDialog = new Gtk::Dialog (); my $hbxButtonBox = new Gtk::HBox (0,3); my $hbxTextBox = new Gtk::HBox (0,3); # build up all the buttons and associate callbacks foreach $refCurButtonDescr (reverse @ButtonDescr) { croak ("invalid button name") unless scalar ($$refCurButtonDescr[0]); $$refCurButtonDescr[1] = sub { $dlgDialog->destroy(); } if $#$refCurButtonDescr == 0; warn ("button named '$$refCurButtonDescr[0]' has an invalid callback: '$$refCurButtonDescr[1]'") unless ref ($$refCurButtonDescr[1]); # Each button is constructed from its label my $btnTmpButton = new Gtk::Button($$refCurButtonDescr[0]); $btnTmpButton->can_default(1); # A mouse click on the button triggers a call to its embedded # callback then destroys the dialog box $btnTmpButton->signal_connect ("clicked", sub { &{$$refCurButtonDescr[1]}; $dlgDialog->destroy(); }); $hbxButtonBox->pack_end($btnTmpButton, 0, 0, 10); $last_button = $btnTmpButton; } $dlgDialog->action_area->pack_start($hbxButtonBox, 1, 1, 0 ); my $label = new Gtk::Label($strMessage); $hbxTextBox->pack_start($label, 0, 0, 30); $dlgDialog->vbox->add ($hbxTextBox); # the last button is the default one $last_button->grab_default(); # Finally show up everything $dlgDialog->set_policy (0, 0, 1); $dlgDialog->set_default_size (0,0); $dlgDialog->set_title ($strTitle); $dlgDialog->set_modal(1); $dlgDialog->show_all(); } sub ReaderConfig { my $dlgReaderConfig = new Gtk::Dialog (); my $txtReader = new Gtk::Label ("Reader"); my $cboReaders = new Gtk::Combo(); my $rdbT0 = new Gtk::RadioButton("T=0"); my $rdbT1 = new Gtk::RadioButton("T=1", $rdbT0); my $rdbRAW = new Gtk::RadioButton("T=RAW", $rdbT0); my $txtProtocol = new Gtk::Label ("Protocol"); # This sub adjusts the content of $hConfig with the selected protocol my $subProtocol = sub { $hConfig{'protocol'} = $Chipcard::PCSC::SCARD_PROTOCOL_RAW if ($rdbRAW->active); $hConfig{'protocol'} = $Chipcard::PCSC::SCARD_PROTOCOL_T0 if ($rdbT0->active); $hConfig{'protocol'} = $Chipcard::PCSC::SCARD_PROTOCOL_T1 if ($rdbT1->active); }; $rdbT0->signal_connect ('toggled', $subProtocol); $rdbT1->signal_connect ('toggled', $subProtocol); $rdbRAW->signal_connect('toggled', $subProtocol); my $btnOK = new Gtk::Button ("OK"); $btnOK->signal_connect( "clicked", sub { $hConfig{'reader'} = $cboReaders->entry->get_text(); $hCard->Disconnect($Chipcard::PCSC::SCARD_UNPOWER_CARD); $dlgReaderConfig->destroy(); }); $btnOK->can_default(1); my $btnCancel = new Gtk::Button ("Cancel"); $btnCancel->signal_connect( "clicked", sub { $dlgReaderConfig->destroy(); }); $btnCancel->can_default(1); my $hbxReaderBox = new Gtk::HBox (0,10); my $hbxButtonBox = new Gtk::HBox (0,3); my $hbxStatusBox = new Gtk::Table (3,2,1); $hbxReaderBox->pack_start ($txtReader, 0, 0, 10); $hbxReaderBox->pack_start ($cboReaders, 1, 1, 10); $hbxButtonBox->pack_end($btnCancel, 0, 0, 10); $hbxButtonBox->pack_end($btnOK, 0, 0, 10); # Select the last prefered protocol if any if (defined $hConfig {'protocol'}) { $rdbT0->set_active(1) if ($hConfig {'protocol'} == $Chipcard::PCSC::SCARD_PROTOCOL_T0); $rdbT1->set_active(1) if ($hConfig {'protocol'} == $Chipcard::PCSC::SCARD_PROTOCOL_T1); $rdbRAW->set_active(1) if ($hConfig {'protocol'} == $Chipcard::PCSC::SCARD_PROTOCOL_RAW); } $hbxStatusBox->attach_defaults ($txtProtocol, 0, 1, 0, 1); $hbxStatusBox->attach_defaults ($rdbT0, 1, 2, 0, 1); $hbxStatusBox->attach_defaults ($rdbT1, 1, 2, 1, 2); $hbxStatusBox->attach_defaults ($rdbRAW, 1, 2, 2, 3); $cboReaders->set_popdown_strings ($hContext->ListReaders ()); $cboReaders->set_case_sensitive(1); $cboReaders->set_value_in_list(1, 0); # We select the last reader if available if (exists $hConfig{'reader'}) { $cboReaders->entry->set_text($hConfig{'reader'}); } $dlgReaderConfig->action_area->pack_start($hbxButtonBox, 1, 1, 0 ); $dlgReaderConfig->vbox->add ($hbxReaderBox); $dlgReaderConfig->vbox->add (new Gtk::HSeparator()); $dlgReaderConfig->vbox->add ($hbxStatusBox); # the OK button is the default one $btnOK->grab_default(); $dlgReaderConfig->set_policy (0, 0, 1); $dlgReaderConfig->set_default_size (0,0); $dlgReaderConfig->set_modal(1); $dlgReaderConfig->show_all(); } sub ReadConfigFile { if (-f $strConfigFileName) { die ("Can't open $strConfigFileName for reading: $!\n") unless (open (FILE, "<$strConfigFileName")); while () { chomp; next if /^#/; next if /^\s*$/; if (/^\s*(\S+)\s*=\s*\'(.*)\'$/) { $hConfig{$1} = $2; } else { print STDERR "Error while parsing $strConfigFileName\n\t'$_'\n"; } } close (FILE); } else { print STDERR "Couldn't read from $strConfigFileName. Using default configuration\n"; } } sub WriteConfigFile { my $strTmpKey; die ("Can't open $strConfigFileName for writing: $!\n") unless (open (FILE, ">$strConfigFileName")); print FILE "# This file is automatically generated\n# Do not edit unless you know what you are doing\n\n"; foreach $strTmpKey (keys %hConfig) { print FILE "$strTmpKey = \'$hConfig{$strTmpKey}\'\n"; } close (FILE); } sub ReadScriptFile { my $strScriptFileName = shift; my $strBaseFileName = basename ($strScriptFileName); return 0 unless open (FILE, "<$strScriptFileName"); $txtScript->freeze(); $txtScript->delete_text (0,-1); while () { $txtScript->insert_text ($_, $txtScript->get_length); } $txtScript->thaw(); close (FILE); # Upon succesfull completion, we also set the window title as well # as the current ScriptfileName in the configuration hash $hConfig{'script'} = $strScriptFileName; $wndMain->set_title ("$strAppName - <$strBaseFileName>"); return 1; } sub WriteScriptFile { my $strScriptFileName = shift; my $strBaseFileName = basename ($strScriptFileName); return 0 unless open (FILE, ">$strScriptFileName"); print FILE $txtScript->get_chars (0,-1); close (FILE); # Upon successfull completion, we also set the window title as well # as the current ScriptfileName in the configuration hash $hConfig{'script'} = $strScriptFileName; $wndMain->set_title ("$strAppName - <$strBaseFileName>"); return 1; } sub NewScriptFile { if ($txtScript->get_length()) { # That call to MessageBox will connect the OK button with a callback # that actually erase the script MessageBox( "The current work will be lost !\nAre you sure you want to continue ?", ["OK", sub { EraseCurrentScript(); } ], ["CANCEL"] ); } } sub EraseCurrentScript { $txtScript->delete_text (0,-1); $wndMain->set_title ("$strAppName"); delete $hConfig{'script'}; } sub SaveScriptFile { my ($widget) = @_; if (exists $hConfig{'script'}) { WriteScriptFile ($hConfig{'script'}); } else { SaveAsScriptFile ($widget); } } sub SaveAsScriptFile { my ($widget) = @_; my $file_dialog = new Gtk::FileSelection( "Save File" ); $file_dialog->ok_button->signal_connect( "clicked", sub { my $file = $file_dialog->get_filename(); if (-d $file) { MessageBox ("Can't open $file: file is a directory", ['OK']); } else { MessageBox ("Can't open $file: $!", ['OK']) unless WriteScriptFile ($file); } $file_dialog->destroy(); }); $file_dialog->cancel_button->signal_connect( "clicked", sub { $file_dialog->destroy(); }); if (exists $hConfig{'script'}) { $file_dialog->set_filename(dirname($hConfig{'script'})) } $file_dialog->show(); } sub LoadScriptFile { if ($txtScript->get_length()) { MessageBox( "The current work will be lost !\nAre you sure you want to continue ?", ["OK", \&LoadScript], ["CANCEL"] ); } else { LoadScript(); } } sub LoadScript { my $file_dialog = new Gtk::FileSelection( "Load File" ); $file_dialog->ok_button->signal_connect( "clicked", sub { my $file = $file_dialog->get_filename(); if (-d $file) { MessageBox ("Can't open $file: file is a directory", ['OK']); } else { MessageBox ("Can't open $file: $!", ['OK']) unless ReadScriptFile ($file); } $file_dialog->destroy(); }); $file_dialog->cancel_button->signal_connect( "clicked", sub { $file_dialog->destroy(); }); if (exists $hConfig{'script'}) { $file_dialog->set_filename(dirname($hConfig{'script'})."/"); } $file_dialog->show(); } sub ClearResult { $txtResult->delete_text (0, -1); @ResultStruct = (); } sub RefreshResult { my $tmpLine; my $tmp_value; $txtResult->freeze(); $txtResult->delete_text (0, -1); foreach $tmpLine (@ResultStruct) { if (ref $tmpLine) { foreach $tmp_value (@$tmpLine) { if ($rdbHex->active) { $txtResult->insert_text (sprintf ("%02X ", $tmp_value), $txtResult->get_length); } else { # TODO: enhance filtering of non-printable chars # TODO: how can we use array_to_ascii here ??? maybe # enhence the function so it can directly receive # ranges of chars to ignore optionally ? if (($tmp_value > 0x20) && ($tmp_value < 0x80)) { $txtResult->insert_text (chr ($tmp_value), $txtResult->get_length); } else { $txtResult->insert_text ('.', $txtResult->get_length); } } } $txtResult->insert_text ("\n", $txtResult->get_length); } else { $txtResult->insert_text ($tmpLine, $txtResult->get_length); } } $txtResult->thaw(); } sub ConnectDefaultReader { if (exists $hConfig{'reader'} && !($hConfig{'reader'} eq '')) { if (defined $hCard->{hCard}) { MessageBox ( "The card is already connected...\nDo you want to reconnect ?", ['OK', \&ReconnectDefaultReader], ['CANCEL'] ); } else { $hCard->Connect ($hConfig{'reader'}, $Chipcard::PCSC::SCARD_SHARE_EXCLUSIVE, $hConfig{'protocol'}); if (defined $hCard->{hCard}) { $txtStatus->set_text ("Connected to '$hConfig{'reader'}'"); } else { MessageBox ("Can not connect to the reader named '$hConfig{'reader'}':\n$Chipcard::PCSC::errno", ['OK']) }; } } else { MessageBox ("No default reader has been configured\nPlease make sure you have configured a reader first", ['OK']); } } sub ReconnectDefaultReader { if (defined $hCard->{hCard}) { $hCard->Reconnect ($Chipcard::PCSC::SCARD_SHARE_EXCLUSIVE, $hConfig{'protocol'}, $Chipcard::PCSC::SCARD_RESET_CARD); if (defined $hCard->{hCard}) { $txtStatus->set_text ("Connected to '$hConfig{'reader'}'"); } else { MessageBox ("Can not reconnect to the reader named '$hConfig{'reader'}':\n$Chipcard::PCSC::errno", ['OK']) }; } else { # we just propose to connect but do not call Reconnect() # afterwards that would be quite useless MessageBox ("The Chipcard::PCSC:Card object is not connected...\n Do you want to connect ?", ['OK', sub {ConnectDefaultReader();}], ['CANCEL']); } } sub DisconnectDefaultReader { if (defined $hCard->{hCard}) { $hCard->Disconnect($Chipcard::PCSC::SCARD_UNPOWER_CARD); if (defined $hCard->{hCard}) { MessageBox ("Can not disconnect from the reader named '$hConfig{'reader'}':\n$Chipcard::PCSC::errno", ['OK']); } else { $txtStatus->set_text ("not connected"); }; } else { MessageBox ("The Chipcard::PCSC::Card object is not connected !", ['OK']); } } sub DefaultReaderStatus { if (defined $hCard->{hCard}) { my @StatusResult = $hCard->Status(); if (defined $StatusResult[0]) { #TODO This stinks can't I rewrite it so it looks better&shorter my $tmpVal = 0; my $MessageString = "You are connected to reader $StatusResult[0].\n"; $MessageString .= "Card status (". sprintf ("0x%04X",$StatusResult[1]) ."): "; # Verbosely describes the Card Status (powered, inserted, etc... if ($StatusResult[1] & $Chipcard::PCSC::SCARD_UNKNOWN) { if ($tmpVal) { $MessageString .= ", "; } ++$tmpVal; $MessageString .= "'Unknown state'"; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_ABSENT) { if ($tmpVal) { $MessageString .= ", "; } ++$tmpVal; $MessageString .= "Absent"; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_PRESENT) { if ($tmpVal) { $MessageString .= ", "; } ++$tmpVal; $MessageString .= "Present"; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_SWALLOWED) { if ($tmpVal) { $MessageString .= ", "; } ++$tmpVal; $MessageString .= "Swallowed"; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_POWERED) { if ($tmpVal) { $MessageString .= ", "; } ++$tmpVal; $MessageString .= "Powered"; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_NEGOTIABLE) { if ($tmpVal) { $MessageString .= ", "; } ++$tmpVal; $MessageString .= "'PTS is negotiable'"; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_SPECIFIC) { if ($tmpVal) { $MessageString .= ", "; } ++$tmpVal; $MessageString .= "'PTS has been set'"; } # Verbosely describes the currently active protocol $MessageString .= ".\nThe active protocol (".sprintf ("0x%04X", $StatusResult[2]).") is "; if (($StatusResult[2] & $Chipcard::PCSC::SCARD_PROTOCOL_T0)) { $MessageString .= "T=0 "; } elsif (($StatusResult[2] & $Chipcard::PCSC::SCARD_PROTOCOL_T1)) { $MessageString .= "T=1 "; } elsif (($StatusResult[2] & $Chipcard::PCSC::SCARD_PROTOCOL_RAW)) { $MessageString .= "RAW "; } else { $MessageString .= "unknown"; } # Displays the ATR (if available) $MessageString .= ".\nThe ATR is "; if (defined $StatusResult[3]) { foreach $tmpVal (@{$StatusResult[3]}) { $MessageString .= sprintf ("%02X ", $tmpVal); } } else { $MessageString .= "not available"; } MessageBox ($MessageString, ['OK']); } else { MessageBox ("Can not retrieve reader status:\n$Chipcard::PCSC::errno", ['OK']) } } else { MessageBox ("The reader is not connected...\n Do you want to connect ?", ['OK', sub {ConnectDefaultReader(); if (defined $hCard->{hCard}) {DefaultReaderStatus();}}], ['CANCEL']); } } sub RunScript { if (defined $hCard->{hCard}) { my @tmpCommandArray = split /\n/, $txtScript->get_chars (0,-1); my $raCurrentResult; my $nIndex; push @ResultStruct, "Beginning script execution...\n\n"; foreach $_ (@tmpCommandArray) { # this variable has to be inside the loop as we store a # reference to it in the result struct... it has to be # unique for each command line my $raCurrentCommand; # Skip blank lines and comments next if /^\s*$/; next if /^#/; if (/reset/i) { push @ResultStruct, "[Reset]\n\n"; ReconnectDefaultReader(); next; } # if the command does not contains spaces (00A4030000) we expand it s/(..)/$1 /g if (! m/ /); # Extract bytes from the ascii string $raCurrentCommand = Chipcard::PCSC::ascii_to_array($_); # push them in the Display structure push @ResultStruct, "Sending: "; push @ResultStruct, $raCurrentCommand; # Transmit them to the card $raCurrentResult = $hCard->Transmit ($raCurrentCommand); if (ref $raCurrentResult) { push @ResultStruct, "Received: "; push @ResultStruct, $raCurrentResult; push @ResultStruct, Chipcard::PCSC::Card::ISO7816Error(substr Chipcard::PCSC::array_to_ascii($raCurrentResult), -5), "\n\n"; } else { MessageBox ("Transmit failed: $Chipcard::PCSC::errno\nStopping script execution", ['OK']); push @ResultStruct, "\nErrors During Script Execution: $Chipcard::PCSC::errno\n"; last; } } push @ResultStruct, "Script was executed without error...\n"; } else { MessageBox ("The Chipcard::PCSC::Card object is not connected !\nDo you want to connect ?", ['OK', sub {ConnectDefaultReader(); if (defined $hCard->{hCard}) {RunScript();}}], ['CANCEL']); } RefreshResult(); } sub CloseAppWindow { undef $hCard; undef $hContext; WriteConfigFile(); Gtk->exit(0); } sub Help { MessageBox (" $strAppName is coded by Lionel VICTOR, (C) 2001. and debugged by Ludovic ROUSSEAU, (C) 2001-2003. $strAppName is a small application written in Perl. It basically demonstrates how easy it is to develop a quick working prototype that uses smartcards in Perl. ", ['OK'] ); } # End of File # pcsc-tools-1.4.25/smartcard_list.txt0000644000175000017500000070343612617701462017766 0ustar rousseaurousseau# # smartcard_list.txt # Copyright (C) 2002-2012 Ludovic Rousseau # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA # 02111-1307 USA # # This list contains a match between an ATR and a card type # The list is sorted for edition purposes # # You can get the latest version of this file from: # http://ludovic.rousseau.free.fr/softwares/pcsc-tools/smartcard_list.txt # # syntax: # ATR in regular expression form # \t descriptive text # \t descriptive text # \t descriptive text # empty line 3B 02 14 50 Schlumberger Multiflex 3k 3B 02 14 50 11 Maste visa card (Bank) 3B 02 36 02 EMTG56 0.2 3B 02 52 01 EMTCG256-3G 0.1 3B 02 53 01 Gemplus GemClub Memo SuperShop clubcard 3B 04 00 00 00 00 Laundromat payment card Spanish ID ("DNIe: Documento Nacional de Identidad electrónico). http://www.dnie.es/ 3B 04 01 02 03 04 SLE4442 - memory card (256) with write protection PIN. (Other) 3B 04 07 3C 85 92 OLD Spanish Prepaid phone cards (pesetas) provided by Telefonica 3B 04 07 3C 85 9A OLD Spanish Prepaid phone cards (pesetas) provided by Telefonica 3B 04 07 3C 89 10 OLD Spanish Prepaid phone cards (pesetas) provided by Telefonica 3B 04 07 3C 89 18 OLD Spanish Prepaid phone cards (pesetas) provided by Telefonica 3B 04 07 3C 89 92 OLD Spanish Prepaid phone cards (pesetas) provided by Telefonica 3B 04 07 3C 89 9A OLD Spanish Prepaid phone cards (pesetas) provided by Telefonica 3B 04 07 3C 8C 10 OLD Spanish Prepaid phone cards (pesetas) provided by Telefonica 3B 04 09 9C 2B 83 T.P.G. - CART@BONUS 20CHF (Transport) http://www.tpg.ch/fr/titres-de-transport/moyens-de-paiement/carte-prepayee-cartabonus.php 3B 04 17 3C CC E0 prepaid payphone card, issued by Telefónica Comunicaciones Públicas http://www.cabitel.es 3B 04 2A FF 32 00 Mac Gray Intelligent Laundry Systems laundry card 3B 04 41 11 77 81 Sample Mifare DESFire contactless smartcard from Phillips 3B 04 41 11 77 B1 IBM JCOP 30 contactless 3B 04 49 32 43 2E German Health Insurance Card "LogCard" from concept2.com (a indoor rower manufacturer) I2C card 3B 04 92 23 10 91 Siemens SLE 4432/42 card 3B 04 98 94 00 C4 Windsor and Maidenhead Advantage Card http://www.rbwm.gov.uk/web/advantage_index.htm 3B 04 99 FF FF 90 Madrid prepaid parkimeters parking card 3B 04 9C FF 21 43 Hercules laundry stored value card 3B 04 A2 13 10 91 PM2P Chipkarte SLE 4442, Code FFFFFF Bahn BKK (Deutsche Bahn AG - Insurance Company) NH Hotels World fidelization card Miele Professional card for paying washing machine 3B 04 C9 D0 F1 40 Cuban prepaid phone card provided by ETECSA 3B 04 C9 D5 FD 20 Bell Canada LaPuce card - prepaid phone card (Telecommunication) 3B 04 FF FF FF FF Identity card Universidad del Pais Vasco / Euskal Herriko Unibertsitatea www.ehu.es 3B 05 00 03 36 66 AE HID (eID) 3B 05 68 01 01 02 05 Certinomis card (electronic certificates) Schlumberger Cryptoflex ActivCard 3B 05 80 73 F7 01 C0 (Shenzhen, China) Mingwah Aohan eKey, eID http://en.mwcard.com/index.php?option=com_k2&view=item&layout=item&id=79&Itemid=439 3B 06 00 00 04 2E CF 4C HID 1346 ProxKey III http://www.hidglobal.com/products/cards-and-credentials/hid-proximity/1346 3B 06 00 10 01 D6 C5 46 HID ProxKey II FOB http://www.hidglobal.com/documents/proxkey_ds_en.pdf 3B 06 01 01 00 00 10 73 HID Prox 26-bit (eID) 3B 06 01 02 10 .. .. .. ISOProx II Card: http://www.hidglobal.com/documents/isoprox_ds_en.pdf 3B 06 2A 01 01 01 00 05 Driving Licence (Transport) 3B 06 81 24 80 80 90 00 10€ credit card for TV & telephone in Jerez de la Frontera hospital's rooms. The maker can be found at www.isernsa.com (ISERN Medical Telecomunications) 3B 06 A2 13 10 91 90 00 C3P2K SAMPLE CARD (C3PO, S.L) 3B 06 A2 16 10 91 90 00 rectangular (Other) 3B 07 55 4E 4B 4E 4F 57 4E US DOD Smart Card 3B 07 64 .. .. .. .. .. .. HID Corporate 1000 Format http://www.hidglobal.com/sites/hidglobal.com/files/resource_files/omnikey_contactless_developer_guide.pdf 3B 07 64 08 10 .. .. .. .. UC Berkeley student card 3B 09 41 04 11 DD 82 2F 00 00 88 1k contactless Mifare 3B 0A 20 62 0C 01 4F 53 45 99 14 AA GSM-SIM BEN (1800MHz) 3B 0A 21 00 26 07 4F 53 45 98 08 F8 ORGA test systems GSM phase 2+ test SIM. 3B 0E BC E1 CA AF C2 DF BC AD BC D3 C3 DC BF A8 German "Versichertenkarte" Healthcare card 3B 0F 00 65 46 53 05 16 05 71 DF 00 00 00 45 50 53 Feitian ePass3000, Feitian formatted 3B 0F 00 65 46 53 05 16 05 71 DF 00 00 00 80 6A 82 Feitian ePass3000, OpenSC formatted 3B 0F 00 65 46 53 05 30 05 71 DF 00 00 00 80 6A 82 Fetian epass3000 3B 0F 80 22 15 E1 5A 00 20 00 30 21 03 31 21 03 00 RSA SecurID SID800 token 3B 0F 80 22 15 E1 5A 00 20 00 31 21 03 31 21 03 00 RSA SecurID SID800 token 3B 0F 80 31 E0 6B 05 07 05 02 82 55 55 55 55 55 55 Secure Worker Access Consortium Identification (eID) https://www.secureworker.com 3B 0F 80 6A 16 32 46 49 53 45 53 8C E0 FF 07 90 00 GSM-SIM Sonera (from 1998) 3B 0F FF C1 B5 CC 72 CA 00 00 .. Mifare Std 1K 3B 12 95 36 06 EMTG56 0.6 (sub-version 0.1) 3B 12 95 36 08 EMTG56 0.8 (sub-version 0.1) 3B 12 95 36 09 EMTG56 0.9 (sub-version 0.1) 3B 15 11 12 CA 07 00 DB Tricolor TV center card (Pay TV) 3B 15 11 12 CA 07 11 CA DRE Crypt (Pay TV) 3B 15 11 12 CA 07 14 CF PlatformaHD (Russia) DRE Crypt 4AE1:14 3B 15 13 80 53 41 52 03 Eutron CryptoIdentity (ATMEL AT903232C - 6464C Cryptographic processors, 64KB EEPROM, RSA 2048) 3B 15 18 2E 00 5C 00 01 China Unicom 64k OTA 3B 15 94 C3 02 08 16 01 GSM-SIM EMT (Estonia) 3B 16 18 AF 01 02 02 02 00 SIM Virgin Mobile (Australia) 3B 16 94 20 02 01 20 01 0D Rogers SIM Card (phone / cable provider in Canada) 3B 16 94 71 01 01 00 27 00 Cingular GSM SIM Card 3B 16 94 71 01 01 05 02 00 GSM SIM Bouygues Telecom 3B 16 94 71 01 01 06 02 00 SFR GSM SIM Card 3B 16 94 72 04 01 00 00 00 MTS SIM card, Russia (Telecommunication) 3B 16 94 81 10 06 01 .. .. Schlumberger Cyberflex Access 16K 3B 16 94 81 10 06 01 81 2F Schlumberger Cyberflex Access Augmented Crypto 3B 16 94 81 10 06 01 81 3F Schlumberger Cyberflex Access Crypto 3B 16 94 D0 01 76 0D 2A 00 Peruvian GSM SIM 3B 16 94 D0 01 7B 2C 0E 00 SIM tunisiana 3B 16 95 9B 00 07 01 18 03 Thai GSM UICC (Telecommunication) 3B 16 95 D0 00 45 F7 01 00 Telefónica O2 Czech Republic, a.s. - O2 sim card - 173285 / SIM64ND.GO0 http://www.o2.cz 3B 16 96 41 73 74 72 69 64 Gemalto .NET v2.0 3B 16 96 41 73 74 72 69 64 3B 02 14 50 Gemalto IDPrime v2+ .NET 3B 16 96 77 00 06 01 04 03 AIS One-2-Call GSM UICC (Telecommunication) http://www.ais.co.th 3B 16 96 BA 00 0E 01 06 03 Vinaphone Vietnam SIM 3B 16 96 BA 00 0E 02 0A 03 Vietel (Telecommunication) 3B 16 96 D0 00 D4 07 2C 00 Vodafone India Postpaid / Local Operator 3G 3B 17 11 80 65 AF 03 42 00 D8 TELE2 SPB SIM Russia 3B 17 13 9C 12 02 01 01 07 40 Schlumberger Cyberflex Access Developer 32k 3B 17 94 18 01 01 01 01 41 93 T-Mobile SIM card 3B 17 94 18 01 01 02 01 41 49 white SFR SIM card 3B 17 94 18 01 01 09 01 41 53 Old Spanish Telefónica Movistar GSM SIM card 3B 17 94 18 02 01 25 01 41 93 AT&T Wireless GSM SIM Card 3B 17 94 20 01 01 0A 02 41 43 KPN SIM card 3B 17 94 20 05 01 10 01 41 FF CLARO SIM card (ex CTI Movil) 3B 17 94 21 03 01 0A 02 41 FF Eurotel Praha, spol. s r. o. - O2 SIM card (Telecommunication) http://www.o2.cz/ 3B 17 94 80 65 D0 01 6C F2 BE CMCC sim cards with TD-SCDMA support 3B 17 94 80 65 D0 01 8B F2 08 China SIM card 3B 17 94 89 01 02 01 02 41 87 Vodafone/Omnitel 16K GSM SIM 3B 17 95 80 65 D0 01 7E 0D F0 Si.Mobil Slovenia GSM SIM card (Telecommunication) http://www.simobil.si 3B 18 11 E8 43 01 10 09 05 07 77 Sim Card GSM for provider 3 telecommunication Indonesia (Telecommunication) http://tri.co.id/ 3B 18 94 45 15 37 00 01 00 FF 02 Micro SIM Life (Telecommunication) http://www.life.ua/ 3B 18 94 53 0D 06 77 24 07 FF 02 GSM SIM Tele2 Estonia, prepaid (Telecommunication) 3B 18 94 53 20 07 AD 0A 05 FF 02 GSM SIM Beeline Kazakhstan (Telecommunication) http://beeline.kz/ 3B 19 14 55 90 01 01 01 00 05 08 B0 Schlumberger Multiflex 8k 3B 19 14 55 90 01 02 01 00 05 04 B0 Schlumberger Multiflex 4k 3B 19 14 59 01 01 0F 01 00 05 08 B0 Schlumberger Multiflex 8k 3B 19 94 31 02 05 10 45 98 01 02 4E GSM-SIM EMT (Estonia) 3B 19 94 33 03 01 31 45 41 06 02 B6 BASE Twin simcard (Telecommunication) 3B 19 94 80 67 94 08 01 25 01 01 01 Mobiphone (Telecommunication) 3B 19 96 80 67 93 27 01 02 02 04 01 Orange SIM card (Telecommunication) 3B 19 96 80 67 94 16 02 03 01 01 01 Movistar Argentina Usim Card (Telecommunication) www.movistar.com.ar 3B 1B 94 80 69 06 02 22 11 00 80 08 00 00 eID 3B 1B 94 80 69 07 05 21 11 00 80 00 00 00 Aircel SIM (Telecommunication) 3B 1B 96 05 43 43 32 52 53 05 12 10 90 00 ChipCity CC32RS512 factory boot loader (this is a flash based CPU card with a factory-default bootloader) 3B 1C 94 43 48 49 50 44 52 49 56 45 30 30 31 SCM Chipdrive MyKey MasterKey 24k 3B 1D 11 00 32 04 00 00 00 FF 00 00 00 00 90 00 chip ST32F32A (Telecommunication) 3B 1D 11 06 02 7F 3F 13 03 17 01 00 11 35 10 00 XL (Telecommunication) http://www.xl.co.id/ 3B 1D 96 00 23 07 00 00 00 00 00 00 00 00 90 00 emulator card prototype from ST 3B 1E 13 00 69 45 4D 43 45 66 32 28 F8 6B 00 90 00 ECHS (Ex-servicemen Contributory Health Scheme) Card (HealthCare) http://echs.gov.in/ 3B 1F 11 00 67 42 41 46 49 53 45 53 52 66 FF 81 90 00 Finnish student id card 3B 1F 11 00 67 80 42 46 49 53 45 10 52 66 FF 81 90 00 Nokia branded SC (Setec) 3B 1F 11 00 6A 01 38 46 49 53 45 10 8C 02 FF 07 90 00 GSM-SIM Saunalahti (from 2004) Finnish cell phone operator "Sonera" SIM card (from 2002) 3B 1F 11 00 6A 31 36 46 49 53 45 13 8C 02 FF 07 90 00 GSM-SIM card - Telenor Mobil http://www.telenor.com/ 3B 1F 11 00 6A 31 38 46 49 53 45 13 8C 02 FF 07 90 00 Latvian GSM operator TELE2 (SIM) 3B 1F 11 80 6A 16 32 46 49 53 45 15 8C E6 FF 07 90 00 GSM SIM card - Tele2 Estonia http://www.tele2.ee 3B 1F 11 80 6A 32 37 46 49 53 45 12 8C 00 FF 07 90 00 Setec Test card, SetCOS 3.7.2, rel 1.3 3B 1F 11 80 6A 32 37 46 49 53 45 12 8C 02 FF 07 90 00 GSM-SIM DNA Finland (from 2001) 3B 1F 11 80 6A 80 34 46 49 53 45 53 94 00 FF 07 .. .. Setec SetCos 3.4 3B 1F 11 80 6A 80 34 46 49 53 45 53 94 36 FF 07 90 00 SetCOS 3.4.0c RSA SecurID 3100 3B 1F 94 00 6A 01 38 46 49 53 45 10 8C 02 FF 07 90 00 GSM-SIM Saunalahti (from 2004) 3B 1F 94 80 31 00 73 12 21 13 57 4A 33 05 2B 32 34 00 Metfone Cambodia SIM card http://metfone.com.kh/en/Home/Default.aspx 3B 1F 94 80 31 00 73 12 21 13 57 4A 33 05 30 32 34 00 Tron - MVNO Malaysia SIM Card (Giesecke & Devrient SIM) http://www.tron.my 3B 1F 94 80 6A 16 32 46 49 53 45 15 8C E6 FF 07 90 00 GSM-SIM Sonera (from 2002) 3B 1F 95 80 31 00 73 12 21 13 57 4A 33 0E 19 32 33 00 Latvian GSM Operator BITE 3B 1F 95 80 31 00 73 12 21 13 57 4A 33 0E 1A 32 36 00 Telcel Mexico SIM Card (Telecommunication) 3B 23 00 00 36 41 81 Schlumberger Payflex 4k SAM 3B 23 00 35 11 80 Schlumberger Payflex 1k User 3B 23 00 35 11 81 Schlumberger Payflex 1k SAM 3B 23 00 35 13 80 Schlumberger Cyberflex Access Campus 3B 23 00 35 13 FF Schlumberger MicroPayflex 3B 23 00 35 41 80 PayflexHID (idenfitied by Sun Ray Services) 3B 24 00 .. .. .. 45 Conax 3B 24 00 30 42 30 30 ComHem Digital-TV smartcard (Sweden) TNK Telewizja Na Kartę (Poland) - Conditional access system : Conax (Norway) http://telewizjanakarte.pl/ 3B 24 00 80 72 94 43 MPCOS-3DES 64K \ EMV Filter (Gemplus) 3B 24 00 FF FC FC FC Carta Nazionale dei Servizi - Camerica di Commercio di Torino (eID) 3B 26 00 00 26 40 00 90 00 Schlumberger, purse? 3B 26 00 11 01 6D 03 OLD CajaMadrid Visa Cash, ID card for Universidad Autónoma de Madrid, Madrid (about 1998) 3B 26 00 11 04 5C 03 90 00 Caixa Abierta (Barcelona, Spain) Cash/Visa Electron 3B 26 00 11 06 23 03 90 00 Tarjeta de la Seguridad Social (Spanish Social Insurance Card) 3B 26 00 24 06 01 00 00 80 old KPN NetBox card 3B 26 00 31 08 6C 03 90 00 VISA ELECTRON from Caixa Catalunya bank card (www.caixacatalunya.es) for students in UPC university of Barcelona (Spain) (www.upc.es) 3B 26 00 31 1A 45 03 90 00 Tajeta Sanitaria Individual (Spanish Insurance Card) from the "Junta de Andalucia(Consejeria de Salud)" 3B 27 00 80 65 A2 .. 01 01 37 Gemplus GemSAFE Smart Card (4K) 3B 27 00 80 65 A2 00 01 01 37 Gemplus GemSAFE Card CSP v1.0 3B 27 00 80 65 A2 02 02 82 37 Gemplus GPK2000s 3B 27 00 80 65 A2 02 03 82 37 Gemplus GPK2000sp 3B 27 00 80 65 A2 04 01 01 37 Gemplus GPK4000s 3B 27 00 80 65 A2 05 01 01 37 Gemplus GPK4000sp 3B 27 00 80 65 A2 06 01 01 37 GPK 4000, RSA 512 bits Sign, Unwrap 40 bits 3B 27 00 80 65 A2 0C 01 01 37 Gemplus GPK4000 3B 27 00 80 65 A2 8C 3B 27 00 GPK 4000, RSA 1024 bits Sign, Unwrap 256 bits 3B 29 00 24 93 01 00 00 00 00 01 A9 Telephone chipcard for the Vienna University of Technology http://nic.tuwien.ac.at/telefonie/chipkarte/ 3B 29 00 80 72 A4 45 64 00 00 D0 15 Moeda Electronica Bradesco (Gemplus MPCOS?) (Brasilia) 3B 29 00 80 72 A4 45 64 00 FF 00 10 MPCOS-3DES 8K (Gemplus) MBNA Europe Platinum Plus Mastercard MasterCard Card - Worldcard - Yapıkredi / Turkey Portugal BPI Visa Electron UCFIN (Italy) "UniCreditCard Free" or "Plus" (VISA or MasterCard) credit card 3B 2A 00 80 65 A0 58 04 01 62 72 D6 43 Gemplus GemCombiXplore MPCOS Pro 3B 2A 00 80 65 A2 01 .. .. .. 72 D6 41 Gemplus MPCOS EMV 1 Byte sectors 3B 2A 00 80 65 A2 01 .. .. .. 72 D6 43 Gemplus MPCOS EMV 4 Byte sectors 3B 2A 00 80 65 A2 01 00 00 00 72 D6 41 MPCOS_EMV_1B 3B 2A 00 80 65 A2 01 00 00 00 72 D6 43 MPCOS_EMV_4B 3B 2A 00 80 65 A2 01 01 01 3C 72 D6 43 Estonian bank "SEB" (VISA Electron) 3B 2A 00 80 65 A2 01 01 01 3D 72 D6 43 GEMPLUS Logico Secure SmartCard for Citrix Metaframe PTTPost Easy Stamp Hungarian student card 3B 2A 00 80 65 A2 01 02 01 31 72 D6 43 MPCOS-EMV 64K Functional Sample 3B 2F 00 80 69 10 80 00 01 A1 0A 01 01 59 83 0E 90 00 Belgium Dexia (Axion) Bank Card Proton/Bancontact Mister Cash/Maestro 3B 2F 00 80 69 AF 03 07 06 68 00 00 0A 0E 83 06 GSM SIM MobilCom (Gemplus) 3B 2F 00 80 69 AF 03 07 06 68 00 00 0A 0E 83 06 9F 16 MobilCom-Karte 3B 2F 00 80 69 AF 03 07 06 68 00 05 0A 0E 83 3E 9F 16 KPN @ Mobile SIM card 3B 32 15 00 06 80 Schlumberger Multiflex 8k 3B 32 15 00 06 95 Schlumberger Multiflex 8k DES 3B 34 00 00 30 42 30 30 Conax card: T-Home Hungary 3B 34 94 00 30 42 30 30 Conax card: ComHem sweden 3B 37 11 00 46 4C 4F 4D 41 90 00 SLE 4428 3B 37 13 00 80 62 11 04 82 90 00 Swiss UBS Maestro/CASH Bank Card 3B 37 13 00 80 62 21 13 82 90 00 Swiss UBS Maestro/CASH Bank Card 3B 3B .. 00 80 6. A[F,E] 03 0[C,D] .. .. 83 .. 90 00 GemXplore Xpresso V3 3B 3B 11 00 67 AF 10 30 07 00 C0 33 33 90 00 Mobicarte Orange 3B 3B 11 00 6A 38 20 00 00 27 A0 33 33 90 00 Spanish Carrefour Móvil SIM card 3B 3B 11 00 80 65 AF 03 0C 01 6F 83 0F 90 00 Gemplus GemX{plore,presso} V3-B1 3B 3B 11 00 80 69 AF 03 0C 01 6F 83 0[0,1] 90 00 GemXplore'Xpresso V3 64K 3B 3B 11 00 91 41 10 10 10 5B A0 00 33 90 00 Pannon SIM card (Hungary) 3B 3B 13 00 80 66 12 03 01 03 00 08 82 90 00 UBS Switzerland Maestro Debit Card (Bank) 3B 3B 94 00 00 64 05 3E 03 0F 31 80 0E 90 00 Slovenian national health insurance card 3B 3B 94 00 4F 34 10 20 01 0. .0 33 33 90 00 Wind (Italy) GSM SIM card 3B 3B 94 00 67 37 10 00 00 39 60 33 33 90 00 Avea GSM / Turkey 3B 3B 94 00 69 3C 10 30 01 3E 40 33 00 90 00 UK Vodafone GSM SIM 3B 3B 94 00 6A 38 20 00 00 00 A0 33 33 90 00 Croatia VIPNet Mobile Operator (Telecommunication) 3B 3B 94 00 6A 38 20 00 00 09 E0 33 33 90 00 virgin mobile (french) SIM card 3B 3B 94 00 80 65 32 13 04 03 30 83 81 90 00 SIM cards by the austrian cell phone provider A1 3B 3B 94 00 80 65 AF 03 0D 01 74 83 0F 90 00 Gemplus GemXplore Xpresso V3 B1P Mobistar SIM - Belgium (Gemplus) 3B 3B 94 00 91 38 11 50 46 97 40 33 33 90 00 Leclerc Mobile (French MVNO) SIM card 3B 3B 94 00 9B 44 20 10 4D 04 20 00 33 90 00 SIM card for 063 network of Telekom Srbije, the Serbian state-owned telephone company. 3B 3B 94 00 9B 44 20 10 4D 05 00 00 33 90 00 SIM card for 066 network Telekom Srbije, the Serbian state-owned telephone company. 3B 3B 94 00 A6 39 90 00 00 00 21 83 83 90 00 meteor ireland http://www.meteor.ie 3B 3B 95 00 91 38 11 20 01 00 80 33 33 90 00 GSM SIM of WIND Italian mobile company 3B 3B 96 00 07 52 51 00 00 A8 FD 33 33 90 00 Movistar Costa Rica SIM card 3B 3B 96 00 40 22 51 00 00 42 00 33 33 90 00 Wind (Italy) 128K GSM SIM card 3B 3B 96 00 40 54 01 00 00 0A C0 33 33 90 00 Wind (Italy) 64K prepaid GSM SIM card 3B 3B 96 00 A7 4C 90 00 00 90 AC 33 33 90 00 Brazilian TIM GSM SIM 3B 3C 11 00 40 AF 13 F3 12 00 06 87 83 80 90 00 SIM GSM Orange Fr 3B 3C 11 00 42 AF 20 A3 20 07 00 22 83 82 90 00 Orange Mobicarte (SIM card old generation) 3B 3C 94 00 42 31 11 A2 12 02 09 51 83 80 90 00 Omnitel IT 16K GSM SIM card 3B 3C 94 00 4B 31 25 A2 10 13 14 47 83 83 90 00 GSM SFR 3B 3C 94 00 4C 31 25 A7 20 1B 00 15 83 83 90 00 GSM-SIM (900MHz) card of the carrier vodafone for their cellular network (phase 2+ with 3V) 3B 3C 94 00 63 31 12 F0 00 00 46 40 83 83 90 00 Old russian "beeline" sim 3B 3D 94 00 01 0F 00 36 00 00 86 60 18 04 00 01 07 Vodafone GSM / Turkey 3B 3D 94 00 23 18 02 56 00 00 86 60 5B 1B 00 00 0F GSM SIM, TMN (Moche prepaid, Portugal) 3B 3D 94 00 24 0E 00 96 00 00 86 60 31 B5 00 06 07 GSM SIM Tele2 Estonia; 2008 3B 3D 94 00 24 0E 00 96 00 00 86 60 31 E0 80 00 07 Operator CMCC SIM card. old 2G SIM. (Telecommunication) 3B 3D 94 00 44 4D 54 11 00 06 06 17 62 11 00 30 00 China Unicom SIM card 3B 3D 95 00 80 67 AF 03 0F 01 7C 06 0E 83 3E 9F 16 (Sprint) Nextel USA iDEN SIM card http://www.sprint.com/index_n.html?brand=Nextel 3B 3E 94 00 80 31 00 73 FE 21 13 62 00 31 83 81 90 00 Vodafone (Italy) 64kB GSM SIM card 3B 3E 95 00 80 31 00 73 FE 21 13 62 00 34 83 81 90 00 STMicroelectronics GSM File system sample CARD for ST microcontrollers 3B 3F 11 00 6F AF 65 03 12 01 80 73 32 21 1B 83 0F 90 00 GSM SIM card Orange J2RE postpaid 3B 3F 11 00 79 AF 65 03 12 01 80 73 32 21 1B 83 0F 90 00 GSM SIM card from Orange (labeled J2RE) 3B 3F 11 00 80 12 00 91 31 C0 64 0E 01 13 12 72 F7 41 05 SCOSTA Smart Card Operating System for Transport Application (transport) 3B 3F 11 00 80 12 00 91 31 C0 64 0E 01 28 AA 72 F7 41 05 SCOSTA Smart Card Operating System for Transport Application (transport) 3B 3F 11 00 80 69 AF 03 1B 02 AB 00 00 06 0E 83 3E 9F 16 PEOPLES (China Mobile HK) sim (Telecommunication) 3B 3F 11 00 80 69 AF 03 37 00 12 00 00 00 0E 83 18 9F 16 Reliance SIM (Prepaid), Telecommunication 3B 3F 94 00 80 65 AF 03 12 01 6F 73 32 21 1B 83 0F 90 00 GSM SIM Card (GEMPLUS), issued by Orange Switzerland (Prepaid) Italian Vodafone 64k SIM GSM SIM T-Mobile NL 3B 3F 94 00 80 65 AF 03 12 01 79 73 32 21 00 83 0F 90 00 O2 (UK) SIM 3B 3F 94 00 80 65 AF 03 12 01 79 73 32 21 1B 83 0F 90 00 UK O2 GSM SIM (2G Online Prepay Maldives) Tesco Mobile (UK) SIM 3B 3F 94 00 80 69 AF 03 07 06 67 00 00 0A 0E 83 3E 9F 16 SFR SIM card (red Gemplus Répertoire) 3B 3F 94 00 80 69 AF 03 07 06 67 09 97 0A 0E 83 3E 9F 16 BASE SIM - Belgium (Gemplus) 3B 3F 94 00 80 69 AF 03 07 06 68 00 7F 0A 0E 83 3E 9F 16 Debitel Vodafone, de (Telecommunication) 3B 3F 94 00 80 69 AF 03 07 06 68 00 85 0A 0E 83 3E 9F 16 O2 (UK) SIM 3B 3F 94 00 80 69 AF 03 0F 02 80 FF FF 06 0E 83 3E 9F 16 GSM-SIM Telefonica Movistar, prepaid (Spain) 3B 3F 94 00 80 69 AF 03 0F 07 A4 00 00 06 0E 83 3E 9F 16 SIM Card PRO from the austrian telecom "A1" 3B 3F 95 00 80 65 AF 03 12 01 6F 73 32 21 1B 83 00 90 00 Gemplus GemXpresso PRO 64 PK SIM 3B 3F 95 00 80 65 AF 03 12 01 6F 73 32 21 1B 83 0F 90 00 Vodafone Italia SIM 64K 3B 3F 95 00 80 65 AF 03 12 01 79 73 32 21 00 83 0F 90 00 GSM SIM Orange NL 3B 3F 95 00 80 65 AF 03 14 01 8A 73 32 21 1B 83 0F 90 00 SIM Vodafone 64k 3B 3F 95 00 80 69 AF 03 0F 02 80 FF FF 06 0E 83 3E 9F 16 AT&T Wireless GSM SIM Card UK Virgin Mobile GSM SIM 3B 3F 95 00 80 69 AF 03 0F 06 A3 FF FF 06 0E 83 3E 9F 16 "SIMYO" SIM card (KPN) 3B 3F 96 00 80 5A 23 80 E1 08 31 08 AE 01 36 DD 82 90 00 Spirtech SAM-S5 v2 3B 3F 96 00 80 5A 23 80 F1 08 31 02 AE 01 3A F2 82 90 00 Spirtech SAM-S1 F1 with Desfire support 3B 3F 96 00 80 69 AF 03 3D 00 C6 00 00 00 0E 83 1E 9F 16 GSM SIM card of the Austrian provider A1 3B 57 18 02 93 02 01 01 01 90 00 Easyflex FastOS 2.0 / Schlumberger 3B 5B 96 00 00 31 C0 64 C6 FC 10 00 01 90 00 Banking card (Oberthur C.S. 06 18710-04-10) 3B 5B 96 00 00 31 C0 64 C7 FC 10 00 01 90 00 EBanking card (Oberthur C.S. 03 1146821) 3B 5E 11 FF 45 73 74 45 49 44 20 76 65 72 20 31 2E 30 Estonian Identity Card (EstEID v1.0 2006 warm) 3B 5F 95 00 80 73 00 01 00 59 43 4C 5A 1B 00 11 40 90 00 SCM Chipdrive MyKey SC 3B 5F 95 00 80 73 00 01 00 59 43 4C 5A 1C 00 11 40 90 00 "CardLogic" CLXSU256KF5 3B 5F 95 00 80 73 00 01 00 59 43 4C 5A C5 06 12 C0 90 00 Republic of Liberia Civil Service Identification Card (eID) 3B 63 00 00 36 41 80 Schlumberger Payflex 4k User 3B 64 .. FF 80 62 .. A2 JCOP20 3B 64 00 00 80 62 0. 51 Setec SetCOS 5.1.0 EMV 3B 64 00 FF 80 62 02 A2 VISA credit card (Nordea bank) 3B 65 00 00 20 63 CB 47 00 Orga SmartyPlus DATA STORE issued by MORPHO CARDS PERU 3B 65 00 00 20 63 CB 63 00 Bank card from Societe Générale (Oberthur) 3B 65 00 00 20 63 CB 64 00 Bank card Caisse d'Epargne 3B 65 00 00 20 63 CB 64 80 MasterCard from La Banque Postale 3B 65 00 00 20 63 CB 66 00 Boursorama banque VISA (bank) 3B 65 00 00 20 63 CB 66 80 Crédit Agricole (french bank) MasterCard 3B 65 00 00 20 63 CB 68 00 VISA credit card (Skandiabanken) VISA credit card (Banque Populaire) Banque Postale card (bank) Société Générale (visa / jazz) HSBC Business VISA 3B 65 00 00 20 63 CB 68 00 26 VISA Société Générale - Oberthur CS 3B 65 00 00 20 63 CB 68 80 Capital One MasterCard Platinum 3B 65 00 00 20 63 CB 6A 00 CB Visa La Banque Postale (Gemalto) CB Visa BNP Paribas (France) CB Visa du Crédit Coopératif CB Visa from Banque Calédonienne d'Investissement (BCI) 3B 65 00 00 20 63 CB 6A 80 Mastercard EMV Debit Card Crédit Agricole (french bank) Gold Mastercard 3B 65 00 00 20 63 CB 6B 00 EMV VISA (France) 3B 65 00 00 20 63 CB 6B 80 Crédit Agricole (french bank) Mastercard 3B 65 00 00 20 63 CB 6C 80 Crédit Agricole Bank Card (Bank) 3B 65 00 00 20 63 CB A0 00 CB Visa Banque Populaire (France) 3B 65 00 00 20 63 CB A0 80 Carrefour, MasterCard credit card, Pass Banque, Oberthur 3B 65 00 00 20 63 CB A1 00 AIB Visa Debit Card, manufcatured by Oberthur 3B 65 00 00 20 63 CB A1 80 bpaid: bpost prepaid Mastercard http://www.bpost.be/site/fr/residential/finance/bpaid/index.html 3B 65 00 00 20 63 CB A3 00 BNP VISA CARD 3B 65 00 00 20 63 CB A3 20 MasterCard Crédit Agricole Anjou-Maine (type Sociétaire) 3B 65 00 00 20 63 CB A3 A0 VISA card from Banque Populaire 3B 65 00 00 20 63 CB A5 20 Mastercard international credit card, with Moneo extension 3B 65 00 00 20 63 CB A5 A0 French banking card "Banque Populaire" 3B 65 00 00 20 63 CB A6 20 Mastercard Credit Agricole (French Bank) 3B 65 00 00 20 63 CB A6 A0 Visa Premier Boursorama (French bank) 3B 65 00 00 20 63 CB A7 20 ING Direct (French Bank) Gold MasterCard 3B 65 00 00 20 63 CB A8 A0 HSBC VISA Card 3B 65 00 00 20 63 CB A9 A0 VISA PREMIER CREDIT CARD (Bank) 3B 65 00 00 20 63 CB AB 20 bank card (Bank) 3B 65 00 00 20 63 CB AB 80 Portugal Caixa Geral de Depósitos Mastercard "Caixa Classic" 3B 65 00 00 20 63 CB AB A0 Visa card (a blue one) edited by Banque Calédonienne d'Investissement (BCI) Visa Card distributed by La Banque Postale 3B 65 00 00 20 63 CB AD 00 MasterCard Debit (Bank) http://www.mastercard.com/ae/personal/en/aboutourcards/debit/gold_card.html 3B 65 00 00 20 63 CB AD 20 bpost bpaid (Bank) http://www.bpost.be/bpaid/ KBC Ireland Mastercard Debit (Bank) 3B 65 00 00 20 63 CB AD 80 Santander Debit Card (Bank) 3B 65 00 00 20 63 CB AE 20 MasterCard payment card for French Crédit Agricole bank (Bank) 3B 65 00 00 20 63 CB AE 80 Visa Premier (HelloBank), Gemalto SGP U1074311B 1214 (Bank) 3B 65 00 00 29 05 01 02 01 ActivCard (Schlumberger) CyberFlex 64K V1 SM 2.1 3B 65 00 00 41 56 49 4F 4E RBC (Royal Bank of Canada) Avion Visa 3B 65 00 00 43 04 6C 90 00 Carte Bancaire (French banking card) (hot reset) 3B 65 00 00 58 01 01 00 80 RBS Advanta Platinum Reserve Master Card UK Lloyds TSB Visa Debit (issued 2003, Gemplus) 3B 65 00 00 80 73 C6 01 00 NX by Abanca free Mastercard debit card (Bank) http://www.abanca.com/es/cuentas/cuenta-nx/ 3B 65 00 00 9C 02 02 01 02 Dectel CI692 3B 65 00 00 9C 02 02 07 02 US Department of Defense, TEST Common Access Card (CAC) Schlumberger Cyberflex Access #2 Axalto Cyberflex Access 32K V2 Sun Microsystems employee card 3B 65 00 00 9C 1[0,1] 01 01 03 Schlumberger Cyberflex Palmera 3B 65 00 00 D0 00 37 00 80 Visa Debit card issued by National Bank of Dubai 3B 66 00 00 00 9C 11 01 01 03 Axalto Cyberflex Access 32K V4 SM 1.3 3B 66 00 00 00 9C 11 01 03 01 Axalto Cyberflex Access 64K V1 Bio SM 3.1 3B 66 00 00 05 12 01 01 01 B1 Lyon1 student card (Moneo compatible) 3B 66 00 00 31 4B 01 01 00 80 VISA credit card (Skandiabanken) 3B 66 00 00 32 D0 00 30 02 01 Kazakhstan Kazkom Onlinebank (Homebank) PKI client key-card https://www.homebank.kz/ 3B 66 00 00 66 44 01 01 03 B1 Carte etudiant Paris 1 moneo BNP Paribas france (Oberthur) Carte Monéo Caise d'épargne Crouse de Lyon 3B 66 00 00 90 D1 02 01 10 B1 Moneo card (e-purse) 3B 66 00 00 90 D1 02 01 10 B1 3B 02 14 50 Card "Bordeaux Ma Ville" (yellow) http://www.bordeaux.fr/ebx/portals/ebx.portal?_nfpb=true&_pageLabel=pgPresStand8&classofcontent=presentationStandard&id=57733 3B 66 00 00 90 D1 02 01 20 B1 Moneo card (e-purse) 3B 66 00 00 90 D1 02 01 40 B1 Student card from Paris Diderot University (with Moneo) 3B 66 00 00 90 D1 02 01 52 B1 Pass Campus Alsace, a mix of a student card, a transport card (Badgeo) and a Moneo http://www.passcampus-alsace.fr/ http://www.cts-strasbourg.fr/Tarifs/Carte%C3%A0puceBadgeo/tabid/598/language/fr-FR/Default.aspx 3B 66 00 00 D0 00 47 44 00 80 VISA credit card (RBC Royal Bank) 3B 66 00 FF 4A 43 4F 50 30 33 IBM JCOP 30 3B 66 00 FF 4A 43 4F 50 32 30 UOB Preferred Platinum Visa Card (Bank) http://www.uob.com.sg/personal/cards/credit/preferred_platinum_visa_card.html 3B 66 00 FF 4A 43 4F 50 32 31 JCOP 21 3B 66 00 FF 4A 43 4F 50 33 30 JCOP30 "OP-DI 16k VISA v2 (JCOP30) ORGA" 3B 67 00 00 00 00 00 00 00 90 00 Axa Bank (Belgium) Mastercard Gold / Axa Bank Belgium MisterCash & Proton card VISA Card (emitted by Bank Card Company - Belgium) 3B 67 00 00 00 00 20 00 00 90 00 BankID card from Sparebank1 3B 67 00 00 00 31 80 71 86 90 00 Swiss ZKB-Bancomat-Card 3B 67 00 00 29 20 00 6F 78 90 00 ING (previously Postbank Chippas) (chipknip) Netherlands Rabobank bankcard (dutch) ASN Bank debit card SNS Bank debit card ABN-AMRO Maestro 3B 67 00 00 29 20 00 6F 78 9A 00 ABN AMRO wereldpas 3B 67 00 00 2A 20 00 41 78 90 00 Prepaid Chipknip Netherlands 3B 67 00 00 2D 20 16 01 78 90 00 CNAMTS and CPAM SSO card (French Health Insurance) 3B 67 00 00 2D 20 36 00 78 90 00 Swedish cashcard http://www.ida.liu.se/~TDDB31/Cashcard.pdf Bank Card (ING - Belgium) Schiphol Group Privium biometric card (Amsterdam Airport entry system) 3B 67 00 00 44 04 01 00 00 FF 07 Visa Electron card, "Bank St. Petersburg", Russia (Bank) 3B 67 00 00 73 20 00 6B 68 90 00 MyKad (eID) 3B 67 00 00 73 20 00 6C .. 90 00 Malaysia Citizen Identity Card (MyKad) http://www.jpn.gov.my/en/identitycard 3B 67 00 00 7C 20 40 34 2B 90 00 Swedbank Visa card 3B 67 00 00 7D 20 40 34 3B 90 00 Nordea Visa Sweden 3B 67 00 00 80 62 21 13 82 90 00 UBS MAESTRO CARD (Bank) 3B 67 00 00 85 20 36 30 78 90 00 Belgium Fortis Bank Belgium Keytrade Bank Belgium Post Bank 3B 67 00 00 85 22 16 31 78 90 00 Swiss UBS Ebanking Chipcard 3B 67 00 00 85 22 16 31 78 9F 00 UBS Token Card (bank) 3B 67 00 00 9C 10 01 01 03 FF 07 Schlumberger Cyberflex Palmera Protect 3B 67 00 00 A5 20 40 10 1F 90 00 Swedish eLegitimation (eID) from Nordea Bank http://www.elegitimation.se/ 3B 67 00 00 A6 40 40 00 09 90 00 Visa card issued by Norway bank DNBNor 3B 67 00 00 A8 10 42 20 1F 90 00 MyKad- Identification Card for Malaysians http://en.wikipedia.org/wiki/MyKad 3B 67 00 00 AB 40 40 26 09 90 00 Swedish VISA credit card (Volvofinans) 3B 67 00 00 AB 40 40 27 0B 90 00 Sparebanken Vest, Norway (spv.no). Visa credit card and national debit card [BankAxept] + Gemalto Todos authentication 3B 67 00 00 B1 40 40 33 0B 90 00 Sparebank1 VISA card, Norway www.sparebank1.no 3B 67 00 00 B2 40 40 20 0B 90 00 Sodexo BASF Antwerpen company card for Belgian "meal cheques" 3B 67 00 00 B3 40 40 00 3B 90 00 Handelsbanken BankID card (Swedish bank authentication issued 2011) 3B 67 00 00 B4 40 40 25 0B 90 00 Electronic meal check 3B 67 00 00 B7 40 40 44 9B 90 00 Handelsbanken frikort maestro (Bank) 3B 67 00 00 C1 30 40 01 0B 90 00 MC/Maestro card issued by Czech's "Ceskoslovenska obchodni banka" 3B 67 00 00 C4 30 40 01 0B 90 00 MasterCard issued by Czech's "Ceskoslovenska obchodni banka" Swedish Maestro bank card (Handelsbanken) 3B 67 00 00 C5 30 40 01 0B 90 00 Banking card (Oberthur C.S. 03 1027069) 3B 67 00 FF C5 00 00 FF FF FF FF 5D Alice Tv italia (Pay TV) 3B 67 25 00 29 20 00 6F 78 90 00 Albert Heijn klantenkaart (loyalty card) Rabopas (Rabobank) 3B 67 25 00 2A 20 00 4[0,5] 68 90 00 Swedish cashcard (proton) 3B 67 25 00 62 24 33 03 .. Bull TB1000 ? (SAM for ATM in Luxemburg) 3B 68 00 00 00 73 C8 40 00 00 90 00 Barclaycard Visa Wave & Pay - Chip I/F VISA Card (Skandinaviska Enskilda Banken) with Swedish BankID PayPal UK MasterCard Chip I/F 3B 68 00 00 00 73 C8 40 10 00 90 00 Icelandic Banking scheme Issued by the Ministry of Treasure in Iceland http://www.islandsrot.is/ 3B 68 00 00 00 73 C8 40 11 00 90 00 Woolworths Everyday Money prepaid Mastercard Nordea Bank Norway Visa + national debet card [BankAxept] VISA Classic - Nordlandsbanken (Norway) Citi Double Cash MasterCard 3B 68 00 00 00 73 C8 40 12 00 90 00 Brazilian "e-CPF" card 3B 68 00 00 00 73 C8 40 13 00 90 00 MASTERCARD issued by MLP (Marschollek, Lautenschläger and Partner) G&D 12696-GDM-10/11 DEBIT CARD issued by BANCO DE CREDITO DEL PERU Visa from Caisse populaire Desjardins (Canada) (Bank) https://www.desjardins.com/ 3B 68 00 00 01 02 10 96 00 00 90 00 Italian BancoPostaClick Postamat Card (Poste Italiane) - MasterCard debit card mbna PLATINUM MasterCard Flash (Banca Fideuram) Italy prepaid Mastercard 3B 68 00 00 56 53 44 43 4C 43 31 30 VISA (Estonian), made by www.trueb.ch Latvian bank "Latvijas Krajbanka" (VISA Electron) 3B 68 00 00 80 62 00 3C 83 00 90 00 Italian PostePay prepaid VISA-Electron PagoBancomat (Debtcard) Maestro - Intesa Sanpaolo Bank / Italy 3B 68 00 00 80 62 00 45 83 00 90 00 MasterCard - Intesa Sanpaolo Bank / Italy 3B 68 00 00 80 66 45 46 01 38 18 03 FNMT WG108k 3B 68 00 00 80 66 57 59 01 00 08 03 Spanish ULPGC student id card http://www.ulpgc.es/ E-Money capability Alliance With La Caja de Canarias Bank Manufactured by GyD IBÉRICA http://www.gi-de.com 3B 68 00 00 80 66 A2 06 01 01 64 00 Visa card issued by Czech's "Komercni banka" (Gemplus brand on chip) 3B 68 00 00 80 66 A2 06 02 01 32 0E Gemplus GemClub 1K 3B 68 00 00 80 66 B0 07 01 01 07 07 Java Gemalto R7 (Bank) Gemalto Santander Optelio TUI R7 with WG10 using Contact interface 3B 68 00 00 80 66 B0 07 01 01 77 07 Técnico Lisboa Student Card (Bank) http://www.tecnico.ulisboa.pt/ 3B 68 00 00 9D 03 02 01 01 56 49 53 Visa Card - SberBank / Russia 3B 68 00 00 9D 08 01 02 01 56 49 53 Visa Card - bonus - DenizBank / Turkey 3B 68 00 00 9D 08 01 03 01 4F 54 53 MasterCard Card - bonus - Garanti Bank / Turkey 3B 68 00 00 9D 08 01 03 01 56 49 53 MasterCard Card - bonus - Garanti Bank / Turkey MasterCard Card - bonus plus (paypass) - Garanti Bank / Turkey 3B 68 00 00 9D 08 01 05 01 56 49 53 MasterCard Card - CartaSi (Italian Credit Card) 3B 68 00 00 A1 02 02 01 01 56 49 53 UK NatWest Business MasterCard UK Barclaycard VISA UK NatWest Platinum MasterCard Visa Card - DenizBank / Turkey 3B 68 00 00 FF 29 23 00 07 68 90 00 Politecnico di Milano student card "Le Chiavi della Città" SienaCard MINIpay Card 3B 68 00 FF 00 73 C8 40 00 00 90 00 Visa credit card for Bank of Taiwan CommSec Debit MasterCard (Australia) 3B 68 00 FF 56 43 41 52 44 6E 73 73 NSSVirtual Smart Card for qemu 3B 69 00 00 24 94 01 00 00 00 00 01 A9 Kazakhstan Helios gas station debit card http://helios.kz/ 3B 69 00 00 24 94 01 02 01 00 01 01 A9 Chipcard from SUN to be used in SunRay's 370-4328-01 (31091) 3B 69 00 00 24 94 01 03 01 00 01 00 A9 Schlumberger MicroPayflex S card 3B 69 00 00 4A 43 4F 50 33 31 56 32 32 Visa Europe Sample Card / Axalto 3B 69 00 00 50 01 01 04 01 00 01 01 A9 Sample card given to all attendees of the CTST 2004 SmartCard Conference 3B 69 00 00 55 4B 54 20 56 31 2E 30 00 PostFinance Card Direct (Swiss Post) 3B 69 00 00 56 49 53 5F 49 4E 46 20 06 VISA credit card (Ceska Sporitelna) Maestro credit card (Ceska Sporitelna) 3B 69 00 00 80 31 E0 55 42 45 52 47 53 Banrisul Bank 3B 69 00 00 80 72 A4 45 64 00 FF 00 10 Visa Credit Card Denizbank Afilli Bonus -Turkey (Bank) http://www.denizbank.com/kartlar/deniz-bonus-card/afili-bonus/ 3B 69 00 00 AC 04 00 00 04 B1 8C 61 21 Student card for Université numérique Paris Île-de-France http://unpidf.univ-paris1.fr/la-carte-multiservice-etudiant-de-paris-et-d-ile-de-france-1775.kjsp?RH=unr-carte&RF=unr-carte 3B 69 00 00 EB 03 01 06 01 70 01 02 A9 Azeriqaz-SOCAR(Azerbaijan) (Other) http://socar.az/socar/en/home 3B 69 00 FF 00 64 4A 10 04 32 05 90 00 NXP JCOP 20 V2.1 16K 3B 69 00 FF 32 33 32 43 53 43 53 33 36 CSCS smart card. Must be read using CSCS go smart software. https://download.cscsreader.co.uk/ 3B 69 00 FF 4A 43 4F 50 33 31 56 32 32 JCOP 31 v22 72K - S/C I/F 3B 69 00 FF 53 6D 40 72 74 43 61 66 65 G&D (Giesecke&Devrient) Sm@rtCafé 3B 6A 00 00 0F 44 31 31 43 52 02 00 25 C3 Feitian Java Card D11CR (JavaCard) http://www.ftsafe.com/product/smartcard/javacard 3B 6A 00 00 80 31 C0 A1 02 03 01 32 81 16 Lloyds TSB Visa Credit/Debit Card 3B 6A 00 00 80 65 A2 01 01 01 3D 72 D6 43 GemSafe Xpresso 16k 3B 6A 00 00 80 65 A2 01 02 01 31 72 D6 43 UNISINOS University Student's card (Other) 3B 6A 00 00 80 65 A2 01 03 01 8D 72 D6 43 American Express Blue Card 3B 6A 00 00 80 65 A2 01 45 01 3D 72 D6 43 STATE OF KUWAIT CIVIL ID CARD (eID) http://www.e.gov.kw/PACI_en/Pages/EServices/CivilIDValidity.aspx# 3B 6A 00 00 80 66 A1 09 02 01 63 0E 90 00 Danish Visa/Dankort UK MBNA MasterCard Visa Card - Worldcard - YapıKredi / Turkey VISA - Lloyds TSB DEBIT UK Halifax Visa Debit 3B 6A 00 00 80 66 A2 0A 01 01 8B 0E 90 00 CAP-EMV demo card 3B 6A 00 FF 41 42 43 44 32 45 46 47 48 49 Austria card - JCOP 31/36K 3B 6A 00 FF 4A 43 4F 50 32 31 56 32 33 31 JCOP21 v2.3 Standard 3B 6A 00 FF 4A 43 4F 50 34 31 56 32 32 31 NHS hospital smartcard login key (HealthCare) 3B 6B .. FF 80 62 .. A2 56 46 69 6E 45 49 44 JCOP20 v2.x 3B 6B 00 00 00 31 80 64 2D A0 02 0C 8C 61 27 SmartEMV prototype 3B 6B 00 00 00 31 80 64 43 B0 02 00 8C 61 27 Bull Odyssey 1.2 (Javacard 2.0) 3B 6B 00 00 00 31 C0 64 00 27 34 00 07 90 00 American Express Gold Air France - KLM (Bank) 3B 6B 00 00 00 31 C0 64 00 27 34 00 0F 90 00 American Express Chip and Signature Card (Contact) () https://americanexpress.com/chipandsignature 3B 6B 00 00 00 31 C0 64 1F 27 01 1C 07 90 00 Raiffeizen Bank, Russia, MasterCard paypass card (Bank) 3B 6B 00 00 00 31 C0 64 3F 68 01 03 07 90 00 American Express Blue Cash (Bank) https://www.americanexpress.com/us/credit-cards/ 3B 6B 00 00 00 31 C0 64 3F 68 01 03 0F 90 00 HSBC Credit Gold Card from VISA (Bank) 3B 6B 00 00 00 31 C0 64 A9 EC 01 00 82 90 00 Entropia Universe Gold card http://account.entropiauniverse.com/account/security/ 3B 6B 00 00 00 31 C0 64 BE 1B 01 03 0F 90 00 dsafas (Telecommunication) 3B 6B 00 00 00 31 C0 64 D0 10 01 00 07 90 00 Alfa-Bank (Russia) Master Card (Aeroflot bonus) (Bank) 3B 6B 00 00 42 6C 75 63 61 72 64 20 34 4B 42 Blutronics Blucard 4K (Loyalty) http://blucard.blutronics.com 3B 6B 00 00 80 65 A1 09 03 01 97 83 0E 90 00 Visa Card - Worldcard - YapıKredi / Turkey 3B 6B 00 00 80 65 B0 83 01 01 74 83 00 90 00 GemXpresso Pro R3 with 64K EEPROM 3B 6B 00 00 80 65 B0 83 01 03 74 83 00 90 00 Gemplus GemXpresso PRO 64K R3 v1 3B 6B 00 00 80 65 B0 83 01 04 74 83 00 90 00 Gemplus GXP3 64V2N U.S. Department of Defense Common Access Card (DoD CAC) 3B 6B 00 FF 33 00 00 09 FA 10 00 80 01 FF FF Atmel 6464C PRO 64K 3B 6B 00 FF 56 43 41 52 44 5F 4E 53 53 NSSVirtual smart card for qemu 3B 6C 00 00 0F 31 C0 71 D6 64 13 6A 01 00 5D 84 MasterCard debit card: skrill.com card issued by Newcastle Building Society (Bank) https://www.skrill.com 3B 6C 00 00 0F 31 C0 71 D6 64 3E 67 01 01 5D 84 VISA GOLD Card issued by Swedbank AB, Lithuania (Bank) http://www.swedbank.lt/lt/pages/privatiems/auksine_kredito_kortele 3B 6C 00 00 10 10 10 30 00 00 00 00 00 00 00 00 Datacard Group Aptura Development Card V1.1b 3B 6C 00 00 42 6C 75 6C 6F 67 6F 6E 20 34 4B 42 eID Blutronics Blulogon 4K http://shop.blutronics.com/Prodotti.asp 3B 6C 00 00 80 64 11 34 01 48 73 F7 41 C0 81 07 Universal Electronic Card (UEC Russia) (eID) 3B 6C 00 00 80 64 11 65 01 90 73 00 00 00 81 07 Universal Electronic Card (UEC Russia) (eID) 3B 6C 00 02 36 61 86 38 4B 8C 13 04 62 03 59 8A Nagravision, Swiss mode 3B 6D 00 00 00 31 80 64 2D A0 04 0C 71 96 8C 61 29 UK Co-operative Bank Visa Debit (produced 2002) 3B 6D 00 00 00 31 80 71 96 64 33 D1 01 00 82 90 00 DeLaRue GalactIC JavaCard 3B 6D 00 00 00 31 C0 71 D6 64 11 22 33 01 83 90 00 Egg (bank) VISA First Direct (bank) Maestro card First Direct Gold VISA UK Barclaycard Platinum VISA UK Barclaycard VISA UK Halifax Platinum VISA UK HSBC MasterCard UCFIN (Italy) "UniCreditCard Free" or "Plus" (VISA or MasterCard) credit card 3B 6D 00 00 00 31 C0 71 D6 64 19 16 01 00 84 90 00 Eurocard Corporate MasterCard issued by Eurocard AB Sweden Capital One (UK) MasterCard VISA card, issued by Swedbank Latvia VISA issued by Citibank International plc (manufacturer Oberthur) MasterCard issued by Swedbank Estonia (manufacturer Oberthur) Santander Business Visa Debit 3B 6D 00 00 00 31 C0 71 D6 64 34 C7 01 00 84 90 00 DeLaRue ProlifIC 3B 6D 00 00 00 31 C0 71 D6 64 34 C7 02 00 84 90 00 Cybelys card (Thalys fidelity card) 3B 6D 00 00 00 31 C0 71 D6 64 38 D0 02 00 84 90 00 EMV Visa Electron (Oberthur) 3B 6D 00 00 00 31 C0 71 D6 64 38 D0 03 00 84 90 00 HSBC Visa/MasterCard credit card Barclay Card MasterCard 3B 6D 00 00 00 31 C0 71 D6 64 4E D8 01 01 84 90 00 UK Capital One Platinum MasterCard 3B 6D 00 00 00 31 C0 71 D6 64 58 D7 01 00 84 90 00 UK Nationwide Bank Visa Delta UK First Direct Maestro UK Halifax Platinum Visa UK Co-operative Bank Visa Debit (produced 2003-2004) UK HSBC LiveCash Solo Debit card 3B 6D 00 00 00 31 C0 71 D6 65 11 22 33 01 83 90 00 UK Co-operative Bank Visa Debit (produced 2006) 3B 6D 00 00 00 90 08 20 90 00 90 00 00 FF FF FF FF Student college card 3B 6D 00 00 57 44 29 6C 80 86 93 D1 27 1F 13 32 3D SCSTA (Transport) 3B 6D 00 00 57 44 29 6C 80 86 93 D6 03 EE 08 2A 3D SCSTA (Transport) 3B 6D 00 00 80 31 80 65 B0 06 01 01 77 83 00 90 00 GemXpresso Lite: with EMV application 3B 6D 00 00 80 31 80 65 B0 07 02 02 89 83 00 90 00 JCOP30 contact interface 3B 6D 00 00 80 31 80 65 B0 43 01 00 77 83 00 90 00 Gemplus GemXpresso Lite 3B 6D 00 00 80 31 80 65 B0 83 01 02 90 83 00 90 00 DeutscheBank Identification card 3B 6D 00 00 80 31 80 65 B0 83 02 04 7E 83 00 90 00 LuxTrust card https://www.luxtrust.lu/solutions/comp/cartech2 https://www.luxtrust.lu/faq/middleware/middleware 3B 6D 00 00 80 31 80 65 B0 83 11 40 C8 83 00 90 00 Gemalto TOP IM (Old name GemSafeXpresso 64) 3B 6D 00 00 80 31 80 65 B0 86 26 01 08 83 08 90 00 RBC Royal Bank VISA (Bank) 3B 6D 00 00 80 31 80 65 B0 87 27 01 BC 83 08 90 00 Kazcommertsbank http://en.kkb.kz/page/WhoWeAre one of the biggest banks in Republic of Kazakhstan Nordea (Finland) + Finnair MasterCard (credit) 3B 6D 00 00 80 31 80 65 B0 87 34 01 D7 83 00 90 00 Fidelity Investment Rewards (AMEX) (Bank) https://www.fidelity.com/cash-management/american-express-cards 3B 6D 00 00 80 31 80 65 B0 89 35 01 F1 83 00 90 00 Bank of America BankAmericard Travel Visa Chip Card (Gemalto) https://www.bankofamerica.com/credit-cards/products/bankamericard-travel-rewards-credit-card.go 3B 6D 00 00 80 31 80 65 B0 89 40 01 F2 83 00 90 00 PSAM Card 3B 6D 00 00 80 67 A1 11 01 01 64 08 55 83 0E 90 00 Italian Intesa SanPaolo Maestro 3B 6D 00 FF 00 31 80 71 8E 64 48 D5 02 00 82 90 00 Blue for Business, American Express@Business 3B 6D 00 FF 80 65 53 43 01 0D 06 73 94 21 1B 81 0[1,5] Giesecke & Devrient CardToken 350 (ICCD) 3B 6D 00 FF 80 73 00 21 13 57 4A 54 48 61 31 47 00 ActiveKey SIM 3B 6D 00 FF 80 73 00 21 13 57 4A 54 48 61 31 48 00 Spanish Medical College Card 3B 6E 00 00 00 31 80 71 86 65 01 64 02 22 32 80 90 00 MasterCard Card - bonus plus (paypass) - Garanti Bank / Turkey 3B 6E 00 00 00 31 80 71 86 65 01 64 02 22 32 83 90 00 MasterCard Card - bonus YKM - Garanti Bank / Turkey 3B 6E 00 00 00 31 80 71 86 65 01 67 02 A0 0A 83 90 00 Australian ANZ First Visa Card from the ANZ (Australia and New Zealand) Bank 3B 6E 00 00 00 31 80 71 86 65 47 44 23 01 02 83 90 00 Nat West Master Card 3B 6E 00 00 00 31 80 71 86 65 47 44 24 01 81 83 90 00 MasterCard Card - Maximum - IS Bank / Turkey Visa Card - Axess - Akbank / Turkey 3B 6E 00 00 00 31 C0 65 54 B6 01 00 84 71 D6 8C 61 2C Kazakhstan Centrcredit bank VISA electron card http://www.bcc.kz/en/ 3B 6E 00 00 00 31 C0 65 54 B6 01 00 84 71 D6 8C 61 31 UK BARCLAYS VISA Connect Debit card. The chip is used for the Chip&PIN application common for all UK-issued cards http://www.chipandpin.co.uk/ 3B 6E 00 00 00 31 C0 65 76 B4 01 01 60 71 D6 8C 61 1F MasterCard Silver from Viseca Card Services SA http://www.viseca.ch/html/en/kreditkarten/produkte_neutrale_karten.php 3B 6E 00 00 00 31 C0 65 77 B2 01 01 47 71 D6 8C 61 33 VISA Credit Card (National Bank of Greece) 3B 6E 00 00 00 31 C0 65 77 B2 01 03 47 71 D6 8C 61 31 UK Barclaycard Business VISA Nationwide Building Society (UK) Visa Debit and Credit Cards 3B 6E 00 00 00 31 C0 65 77 B2 01 03 47 71 D6 8C 61 37 Italian Soldintasca Sanpaolo prepaid VISA-Electron 3B 6E 00 00 00 31 C0 65 77 B3 01 00 70 71 D6 8C 61 .. Italian Bancomat (debit card) 3B 6E 00 00 00 31 C0 65 7C B5 01 00 80 71 D6 8C 61 2C Kazakhstan Kazkom bank VISA electron card http://en.kkb.kz/ 3B 6E 00 00 00 31 C0 65 7C B5 01 00 80 71 D6 8C 61 35 MasterCard Classic, issued by Avangard Bank (Russia) http://avangard.ru/ 3B 6E 00 00 00 31 C0 65 7C B5 01 00 80 71 D6 8C 61 37 Swedbank MasterCard card 3B 6E 00 00 00 31 C0 65 BC D0 02 01 06 71 D6 8C 61 2E Lloyds TSB Mastercard Credit Card 3B 6E 00 00 00 31 C0 65 BC D0 02 01 06 71 D6 8C 61 33 Lloyds TSB Visa Debit Barclays Visa DEBIT 3B 6E 00 00 00 31 C0 65 BC D0 02 01 06 71 D6 8C 61 43 S-pankki (Finland) Visa Debit 3B 6E 00 00 00 31 C0 65 BC D1 02 01 01 71 D6 8C 61 33 Travelex Cash Passport - Prepaid MasterCard Currency Card 3B 6E 00 00 00 31 C0 65 BC D1 02 01 01 71 D6 8C 61 35 MasterCard Card, issues by Rabobank in the Netherlands 3B 6E 00 00 00 31 C0 65 D3 C1 02 01 28 71 D6 8C 61 22 Visa debit card 3B 6E 00 00 00 31 C0 65 D3 C1 02 01 28 71 D6 8C 61 33 SberBank Silver Debit Card 3B 6E 00 00 00 31 C0 65 D3 C1 02 01 28 71 D6 8C 61 39 Paypal Italy prepaid Mastercard 3B 6E 00 00 00 31 C0 65 D3 C2 02 00 05 71 D6 8C 61 35 Italian Intesa SanPaolo VISA 3B 6E 00 00 00 31 C0 65 D3 C2 02 00 05 71 D6 8C 61 39 Italian Bancomat (Cassa di Risparmio di Rimini) (bank card) 3B 6E 00 00 00 31 C0 65 D3 C3 02 03 01 71 D6 8C 61 3B American Express Platinum from Banco do Brasil 3B 6E 00 00 00 31 C0 65 E2 C4 02 01 01 71 D6 8C 61 22 mastercard (Bank) 3B 6E 00 00 00 31 C0 65 E2 C4 02 02 01 71 D6 8C 61 25 Spanish "Santander" bank - Maestro debit card - Made by gemalto sp SA 3B 6E 00 00 00 31 C0 65 E7 D2 02 01 10 71 D6 8C 61 23 Visa debit card: mBank - BRE Bank SA 3B 6E 00 00 00 31 C0 65 E7 D2 02 01 10 71 D6 8C 61 33 Clydesdal Bank Maestro Card http://www.cbonline.co.uk/personal/current-accounts/debit-card/ 3B 6E 00 00 00 31 C0 65 E7 D2 02 01 10 71 D6 8C 61 35 Knab Bank debit card (Bank) http://knab.nl 3B 6E 00 00 00 31 C0 65 E7 D2 02 01 10 71 D6 8C 61 37 UCFIN (Italy) "UniCreditCard Free" or "Plus" (VISA or MasterCard) credit card 3B 6E 00 00 00 31 C0 65 E7 D2 02 01 10 71 D6 8C 61 39 Yandex Money MasterCard (Bank) http://money.yandex.ru 3B 6E 00 00 00 31 C0 65 E7 D2 02 01 10 71 D6 8C 61 3D VISA credit card (Nordea DK) (Bank) https://www.nordea.dk/om+nordea/nordeadk+in+brief/visa+dankort+card/1619932.html 3B 6E 00 00 00 31 C0 65 E7 D2 02 01 10 71 D6 8C 61 47 Hellenic Bank Visa Electron (Gemalto) 3B 6E 00 00 00 31 C0 65 EC D4 02 00 08 71 D6 8C 61 33 Victoria Bank (Republic of Moldova) - Visa Electron 3B 6E 00 00 00 31 C0 65 F1 D5 02 01 09 71 D6 8C 61 33 HALIFAX (Bank) 3B 6E 00 00 00 31 C0 65 F7 C6 02 00 06 71 D6 8C 61 39 "Ticket Restaurant" Edenred España S.A. (Bank) http://www.edenred.es/ticket-restaurant/tarjeta-restaurante 3B 6E 00 00 00 31 C0 65 F8 D6 02 01 07 71 D6 8C 61 27 VISA Credit Card issued by Santander Bank (Bank) 3B 6E 00 00 00 31 C0 65 F8 D6 02 01 07 71 D6 8C 61 33 Tesco Bank Credit Card (VISA) (Bank) 3B 6E 00 00 00 31 C0 65 F8 D6 02 01 07 71 D6 8C 61 37 UCFIN (Italy) "UniCreditCard Free" or "Plus" (VISA or MasterCard) credit card 3B 6E 00 00 00 31 C0 71 86 65 01 64 02 22 33 83 90 00 UK NatWest ServiceCard 100 Maestro Visa Card - bonus - Garanti Bank / Turkey UK Royal Bank of Scotland Highline Maestro Debit 3B 6E 00 00 00 31 C0 71 86 65 01 78 01 27 34 83 90 00 UK NatWest ServiceCard 100 Maestro Visa Card - Gold - CARDFINANS / Turkey 3B 6E 00 00 00 31 C0 71 86 65 01 BB 01 13 3B 83 90 00 NatWest Servicecard 100 - Maestro ATM NatWest Visa Debit 3B 6E 00 00 00 31 C0 71 86 65 02 02 04 04 41 83 90 00 CIBC (Canada) "Platinum" (VISA) credit card ING Direct (Italy) "Gold" (VISA) credit card ING Direct (Italy) "Bancomat" (V PAY) debit card HSBC (Canada) (Interac/Cirrus/The Exchange) debit card UniCredit (Italy) "Bancomat" (Maestro) debit card 3B 6E 00 00 00 31 C0 71 C6 65 01 B0 01 03 37 83 90 00 NatWest (UK) "Business" (MasterCard) credit card NatWest (UK) (Maestro) debit card Santander Totta (Portugal) "JÁ KÁ KONTA" (VISA Electron) debit card ANZ (Australia) (VISA) credit card Millennium BCP (Portugal) (VISA Electron) debit card OpenBank (Spain) (VISA) credit card CIBC (Canada) debit card UniCredit (Italy) "Genius Card" (MasterCard) debit card UniCredit (Italy) "UniCreditCard Click" (MasterCard) debit card VISA Electron debit card from the Spanish branch of ING Direct (bank) 3B 6E 00 00 00 31 C0 71 C6 65 01 B0 01 03 3A 83 90 00 MasterCard hostet by Deutsche Bank, Germany Maestro card by Caja de Burgos, Spain MasterCard Debit Card issued by Spain Openbank (www.openbank.es) 3B 6E 00 00 00 31 C0 71 C6 65 01 B0 01 31 37 83 90 00 Electron VISA Credit Card (BANK OF Cyprus) 3B 6E 00 00 00 31 C0 71 C6 65 19 02 04 06 2F 0F 90 00 UniCredit (Italy) "Bancomat" (Maestro) debit card (Bank) 3B 6E 00 00 00 31 C0 71 C6 65 42 2C 01 35 35 83 90 00 UniCredit (Italy) "UniCreditCard Classic" (VISA) credit card 3B 6E 00 00 00 31 C0 71 C6 65 71 0C 04 35 36 83 90 00 NatWest VISA Business Debit VISA Debit Card (NatWest / ING DiBa) Komercni Banka, A.S., Visa Debit, Czech Republic 3B 6E 00 00 00 31 C0 71 C6 65 74 0B 04 16 31 0F 90 00 Creditcard Deutsche Bank 3B 6E 00 00 00 31 C0 71 D6 65 12 0D 01 81 00 83 90 00 VISA Gold (VISA ORO) from the Spanish branch of ING Direct (bank) http://www.ingdirect.es/tarjetas-ing/ Visa Credit Card issued by Spain Cetelem for PayPal (www.paypal.es/cetelem) MasterCard debit card: moneybookers.com card issued by Newcastle Building Society 3B 6E 00 00 00 31 C0 71 D6 65 13 0D 01 81 00 83 90 00 Mastercard Black issued by Banco do Brasil (www.bb.com.br) Manufactured by Oberthur (www.oberthur.com) 3B 6E 00 00 00 31 C0 71 D6 65 7D E4 01 10 A0 83 90 00 VISA card, issued by the ANWB, the Dutch national Automobile club VISA Card - Maximum - Oyak Bank / Turkey VISA - Barclays Premier 3B 6E 00 00 00 31 C0 71 D6 65 7D E4 01 11 A0 83 90 00 UK CapitalOne Platinum Mastercard 3B 6E 00 00 00 31 C0 71 D6 65 94 E8 03 40 00 83 90 00 First Direct UK VISA Debit Italian Cariparma Maestro "Net+ Mastercard card" from netpluscards.com, Neteller UCFIN (Italy) "UniCreditCard Free" (VISA) credit card Cirrus ATM Card issued by Permanent TSB in Ireland 3B 6E 00 00 00 31 C0 71 D6 65 A3 03 01 80 00 83 90 00 UK First Direct (HSBC) Maestro / Cirrus UK Capital One Platinum MasterCard HSBC Commercial Card Visa VISA issued by Czech's "Komercni banka" (member of Societe General group) Portugal Caixa Geral de Depositos debit card The co-operative bank VISA Debit SberBank Silver Debit Card (VISA) Maestro/Cirrus/Laser Card issued by Bank of Ireland in Ireland 3B 6E 00 00 00 31 C0 71 D6 65 CE 0B 01 40 00 83 90 00 Nationwide InvestDirect (bank) SberBank Gold Credit Card (VISA) 3B 6E 00 00 00 62 .. 43 57 41 56 41 4E 54 10 81 90 00 Setec SetCOS 4.3.0 3B 6E 00 00 00 62 00 00 57 41 56 41 4E 54 10 81 90 00 Setec SetCOS 5.1.0 EMV + AVANT 3B 6E 00 00 00 62 16 43 .. 41 56 41 4E 54 10 81 .. .. Setec SetCos 4.3.0 3B 6E 00 00 45 73 74 45 49 44 20 76 65 72 20 31 2E 30 Estonian Identity Card (EstEID v1.1 "MULTOS" cold) 3B 6E 00 00 57 44 36 13 69 86 93 02 32 12 56 28 25 32 Watchdata Brazil CSP v1.0 (Banco do Brasil) http://www.watchdata.com/en/bank/solutions.jsp 3B 6E 00 00 57 44 36 19 69 86 93 02 21 18 15 50 0E 2B Usb Token from watchdata from Brazil (PKI) http://www.watchdata.com/brazil/watchkey/index.htm 3B 6E 00 00 62 6C 75 63 61 72 64 20 32 4B 42 2F 76 34 eID Blutronics Blucard 2K http://blucard.blutronics.com 3B 6E 00 00 62 6C 75 63 61 72 64 20 34 4B 42 2F 76 34 eID Blutronics Blucard 4K http://blucard.blutronics.com 3B 6E 00 00 62 6C 75 63 61 72 64 20 38 4B 42 2F 76 34 eID Blutronics Blucard 8K http://blucard.blutronics.com 3B 6E 00 00 80 25 A0 00 00 00 28 56 80 10 24 00 01 11 Opencard, new card in Prague, Czech Republic (transport card) 3B 6E 00 00 80 31 80 65 B0 03 01 01 5E 83 00 00 90 00 FirstUSA Visa 3B 6E 00 00 80 31 80 65 B0 03 02 01 5E 83 00 00 90 00 Gemplus GemXpresso 211is 3B 6E 00 00 80 31 80 66 B0 07 03 00 AC 01 83 00 90 00 e-payment card with topup system, propreteary by local bank http://www.klikbca.com/individual/silver/product.html?s=69 3B 6E 00 00 80 31 80 66 B0 84 0C 01 6E 01 83 00 90 00 Nordea (a Skandinavian bank) eID card http://linux.fi/wiki/Nordea_eID RBC Royal Bank Client Card (bank in Canada) Banco Santander TUI/USC R7 Gemalto Optelio/Desineo D72 (JavaCard) with WG10 and Maestro (JavaCard) (Bank) Carte Ticket Restaurant with MasterCard 3B 6E 00 00 80 31 80 66 B0 84 12 01 6E 01 83 00 90 00 Barclaycard Platinum VISA Inteligo debit card VISA issued by ING (Poland) 3B 6E 00 00 80 31 80 66 B0 84 16 01 6E 01 83 00 90 00 UK "Barclaycard Gold VISA" with RFID 3B 6E 00 00 80 31 80 66 B0 87 0C 01 6E 01 83 00 90 00 Banco Santander TUI/USC R7 - Gemalto Optelio/Desineo D72 (JavaCard) http://www.observatoriotui.com/home 3B 6E 00 00 80 31 80 66 B1 A1 11 01 00 F6 83 00 90 00 Gemalto Desineo D72 FXR1 (PKI) Gemalto TOP DL V2 (PKI) 3B 6E 00 FF 00 62 00 00 57 41 56 41 4E 54 10 81 90 00 debit card (Visa Electron) issued by Nordea bank 3B 6E 00 FF 45 73 74 45 49 44 20 76 65 72 20 31 2E 30 Estonian Identity Card (EstEID v1.0 warm) 3B 6E 00 FF 47 44 2D 47 50 2D 33 32 56 34 2D 44 45 53 Mastercard Ourocard Platinum from Banco do Brasil 3B 6F 00 00 00 66 4D 45 31 61 03 01 53 08 61 04 F0 90 00 Spanish University of Murcia smart ID card - Old version (M.Mar OS) - Also used by many others spanish universities 3B 6F 00 00 00 66 4D 45 31 B1 03 01 53 08 61 04 F0 90 00 Spanish UCAM University smart ID card - (M.Mar OS) - Also used by many others spanish universities 3B 6F 00 00 00 66 4D 45 66 80 03 .. 53 06 61 03 F0 90 00 Millenium Card (www.coruna.es/millennium) municipal city card for A Coruña, Spain. electronic wallet for paying services like parking meter or public service (bus) transportation. 3B 6F 00 00 00 66 4D 45 66 80 03 14 53 03 61 04 F0 90 00 Paypal Prepaid Card (YoUnique Money E.D.E.) 3B 6F 00 00 00 66 4D 45 66 84 03 09 53 03 61 04 F0 90 00 spanish MAESTRO debit card, from Unicaja bank 3B 6F 00 00 00 67 2. 43 46 49 53 45 12 52 66 FF 81 90 00 Setec SetCOS 4.3.2 3B 6F 00 00 00 68 2B 42 05 02 46 49 53 45 31 C8 07 90 00 MAESTRO card, issued by Swedbank Estonia 3B 6F 00 00 00 68 2C 42 05 02 46 49 53 45 31 C8 07 90 00 VISA card, issued by Swedbank Latvia VISA card, issued by the Latvian bank "Latvijas Krajbanka" 3B 6F 00 00 62 6C 75 63 61 72 64 20 31 36 4B 42 2F 76 34 eID Blutronics Blucard 16K http://blucard.blutronics.com 3B 6F 00 00 80 31 C0 52 00 83 64 02 19 08 32 83 83 90 00 Bancomer Mexican Bank 3B 6F 00 00 80 31 C0 52 07 52 64 02 19 08 32 83 83 90 00 Santander (Bank) 3B 6F 00 00 80 31 C0 52 07 6F 64 02 19 04 32 83 83 90 00 Credit Card IXE Banco, México 3B 6F 00 00 80 31 C0 52 0A 47 64 02 B3 02 37 83 83 90 00 Visa debit card issued by the Spanish bank "tubancaja" 3B 6F 00 00 80 31 C0 52 11 F4 64 02 B3 02 37 83 83 90 00 VISA (Bank) 3B 6F 00 00 80 31 C0 52 13 2F 64 02 19 08 32 83 83 90 00 Cajamadrid-UCM (Madrid, Spain) Cash/Visa Electron 3B 6F 00 00 80 31 C0 52 16 B9 64 05 66 80 32 83 83 90 00 Banorte Mexican Bank 3B 6F 00 00 80 31 E0 5B 4E 4F 4B 00 00 00 00 00 00 02 00 Norsk-Tipping (Buypass) Monodex card 3B 6F 00 00 80 31 E0 5B 54 57 44 00 00 00 00 00 00 02 00 MasterCard credit card for Far Eastern Bank, Taiwan 3B 6F 00 00 80 31 E0 5B 59 54 4C 00 00 00 00 00 00 02 00 Turkish Armed Force - Daily Social Facility Usage Card 3B 6F 00 00 80 31 E0 6B 01 03 05 02 E0 55 55 55 55 55 55 American Express Gold Credit Card 3B 6F 00 00 80 31 E0 6B 02 01 02 07 01 55 55 55 55 55 55 Brazilian state bank: Caixa Econômica Federal debit card 3B 6F 00 00 80 31 E0 6B 04 03 03 04 05 55 55 55 55 55 55 Blue American Express Card 3B 6F 00 00 80 31 E0 6B 04 06 03 04 13 55 55 55 55 55 55 Telstra MULTOS v4 Card (PKI) 3B 6F 00 00 80 31 E0 6B 04 06 03 04 40 55 55 55 55 55 55 Blue American Express Card 3B 6F 00 00 80 31 E0 6B 04 06 05 02 17 55 55 55 55 55 55 Marx Software Security - Cryptoken M2048, MULTOS, Infineon SLE66CX, 64kByte http://www.marx.com/en/ 3B 6F 00 00 80 31 E0 6B 04 06 05 02 25 55 55 55 55 55 55 Hong Kong Permanent Identity Card (eID) http://www.gov.hk/en/residents/immigration/idcard/hkic/faq_hkic.htm 3B 6F 00 00 80 31 E0 6B 04 20 05 02 30 55 55 55 55 55 55 Buypass card for Norsk Tipping http://norsk-tipping.no 3B 6F 00 00 80 31 E0 6B 04 20 05 02 47 55 55 55 55 55 55 "Norsk-Tipping (Buypass) Monodex card" bought from http://buypass.no and used to access norwegian state services at http://altinn.no 3B 6F 00 00 80 31 E0 6B 04 20 05 02 58 55 55 55 55 55 55 Norsk Tipping online player card http://www.norsk-tipping.no/ Norwegian government controlled betting company 3B 6F 00 00 80 31 E0 6B 04 21 05 02 57 55 55 55 55 55 55 GE 28 Degrees MasterCard (Australia) (Bank) http://www.28degreescard.com.au/ 3B 6F 00 00 80 31 E0 6B 04 21 05 02 61 55 55 55 55 55 55 NORSK TIPPING NORWAY http://www.norsk-tipping.no/ 3B 6F 00 00 80 31 E0 6B 04 31 05 02 A6 55 55 55 55 55 55 USAA EMV Mastercard Creditcard (Bank) https://www.usaa.com/inet/pages/bk_cc_chipcardLP_landing_mkt?adID=VURL_chipcard 3B 6F 00 00 80 31 E0 6B 05 05 05 02 80 55 55 55 55 55 55 Banamex cuenta perfiles (Bank) http://banamex.com 3B 6F 00 00 80 31 E0 6B 05 08 05 02 83 55 55 55 55 55 55 Bank of Montreal debit card 3B 6F 00 00 80 31 E0 6B 05 12 05 02 87 55 55 55 55 55 55 American Express credit card 3B 6F 00 00 80 31 E0 6B 06 16 05 02 8C 55 55 55 55 55 55 Air Miles American Express card (contact) (Bank) 3B 6F 00 00 80 31 E0 6B 07 14 05 02 8A 55 55 55 55 55 55 SolutionsBanking Canada Interac debit card 3B 6F 00 00 80 31 E0 6B 08 24 05 02 B5 55 55 55 55 55 55 Revolut MasterCard (UK) 3B 6F 00 00 80 31 E0 6B 84 06 03 04 31 55 55 55 55 55 55 Multos Developer Sample 3B 6F 00 00 80 31 E0 6B 84 06 0E 02 02 55 55 55 55 55 55 Multos Developer Sample 3B 6F 00 00 80 31 E0 6B 84 20 05 02 39 55 55 55 55 55 55 Multos 14D (2-0-10) 64K Developer Card 3B 6F 00 00 80 31 E0 6B 84 20 05 02 42 55 55 55 55 55 55 Multos 14Dc(6-0-13) 64K Dual-Interface Developer Card 3B 6F 00 00 80 54 43 4F 4C 44 00 00 00 00 00 00 82 90 00 Valovis Bank Mastercard (www.valovisbank.de) 3B 6F 00 00 80 5A .. 0[1-5] .. .. .. .. .. .. .. .. 82 90 00 Card supporting a Calypso application Rev 1 Navigo (France) transport card ACTV (Italy) transport card 3B 6F 00 00 80 5A 08 03 03 00 00 00 01 56 64 F6 82 90 00 transport bus/tram "atout.tag" semitag grenoble 3B 6F 00 00 80 5A 08 03 03 00 00 00 02 BB 26 7C 82 90 00 Twisto http://www.twisto.fr 3B 6F 00 00 80 5A 08 03 03 00 00 00 02 BF 02 4A 82 92 00 ALSEO, the Alsacian Express Regional Train card (Transport) http://www.ter.sncf.com/alsace/gares/preparer-son-voyage/carte-alseo/ 3B 6F 00 00 80 5A 08 06 08 20 02 00 .. .. .. .. 82 90 00 Lisboa Viva, public transport card of Lisbon (Portugal) 3B 6F 00 00 80 5A 08 06 08 20 02 00 10 00 3E DC 82 90 00 CTS (Compagnie des Transports Strasbourgeois) to hold transportation tickets 3B 6F 00 00 80 5A 08 06 08 20 02 00 10 00 48 EA 82 90 00 french public transport card (www.cts-strasbourg.fr) 3B 6F 00 00 80 5A 08 06 08 20 02 00 92 35 1E 52 82 90 00 Public transport card of Lisbon (www.carris.pt) 3B 6F 00 00 80 5A 08 06 08 20 02 23 92 16 D1 BD 82 90 00 "OPUS Card" Montreal's transit system by oberthur cardsystems 3B 6F 00 00 80 5A 08 06 08 20 02 23 92 1B 4B 59 82 90 00 "OPUS Card" Quebec's Bus system. 3B 6F 00 00 80 5A 08 06 08 20 02 2B 92 98 A1 99 82 90 00 OPUS card for AMT - STM Montreal (subway - train and bus ticket) (Transport) https://opusenligne.ca/en 3B 6F 00 00 80 5A 08 06 08 20 02 2B 92 B1 AA DC 82 90 00 OPUS Card, Montreal, Quebec, Canada community transport (Transport) http://www.stm.info/ 3B 6F 00 00 80 5A 08 06 08 20 02 2B 92 B8 94 FC 82 90 00 Montreal OPUS card (Transport) http://www.stm.info 3B 6F 00 00 80 5A 08 06 08 20 02 2B 92 EF 41 EE 82 90 00 OPUS transit wallet (Transport) http://opusenligne.ca 3B 6F 00 00 80 5A 08 06 08 20 02 2B 93 12 98 45 82 90 00 OPUS card for Montreal, Quebec, Canada transit system, subscription-based, non-rechargeable (Transport) https://opusenligne.ca 3B 6F 00 00 80 5A 08 06 08 20 02 2B 93 19 C2 4F 82 90 00 OPUS, rechargeable contactless stored value smart card using the Calypso Standard and used by most of the public transit operators in the province of Quebec, Canada. (Transport) http://carteopus.info/ 3B 6F 00 00 80 5A 0A 07 06 20 04 01 02 94 95 D3 82 90 00 Rav-Kav Public Transport (Transport) https://ravkavonline.co.il/he/ 3B 6F 00 00 80 5A 0A 07 06 20 04 2B 10 5A 8F 94 82 90 00 Rav-Kav, Used by Israeli public transportation companies (Transport) 3B 6F 00 00 80 5A 28 01 02 20 12 21 03 34 65 77 82 90 00 ONYGO! pass http://www.region-basse-normandie.fr/pass-onygo 3B 6F 00 00 80 5A 28 11 42 10 12 2B 23 BD 87 EE 82 90 00 Navigo pass Calypso standard (Transport) http://www.navigo.fr/ 3B 6F 00 00 80 5A 28 11 42 10 12 2B 25 81 EB A5 82 90 00 Navigo Découverte card for Paris and suburbs transportation, no subscription required (Transport) http://www.navigo.fr/le-choix-entre-la-carte-navigo-ou-la-carte-navigo-decouverte.html 3B 6F 00 00 80 5A 28 11 42 10 12 2B 25 82 88 5F 82 90 00 Navigo Découverte (Transport) 3B 6F 00 00 80 5A 28 11 42 10 12 2B 26 14 7C 55 82 90 00 Navigo (transport) 3B 6F 00 00 80 5A 28 11 42 10 12 2B 26 14 99 22 82 90 00 French "Navigo" NFC card (visually, new design of 2014, with purple/grey color theme, portrait orientation) (Transport) http://www.navigo.fr/ 3B 6F 00 00 80 5A 28 11 42 10 12 2B 26 15 5E E3 82 90 00 French "Navigo" transport card (Transport) http://www.navigo.fr/ 3B 6F 00 00 80 5A 28 11 42 10 12 2B 26 5A AD B0 82 90 00 Navigo card (from March 2014 onwards), to be used in Paris and its suburbs (Transport) http://www.navigo.fr/ 3B 6F 00 00 80 5A 28 11 42 10 12 2B 26 70 68 06 82 90 00 Pass NAVIGO / STIF / RATP / OPTILE 3B 6F 00 00 80 5A 28 11 42 10 12 2B 26 72 E0 9A 82 90 00 Navigo imagine-r (France) (Transport) http://www.imagine-r.com/ 3B 6F 00 00 80 5A 28 11 42 10 12 2B 26 74 CF DD 82 90 00 French "Navigo" transport card (Transport) http://www.navigo.fr/ 3B 6F 00 00 80 5A 28 13 02 10 12 2B 92 92 E6 42 82 90 00 Transport card in côte d'or France (mobigo) 3B 6F 00 00 80 5A 29 13 09 10 11 3[3,5] .. .. .. .. 82 90 00 MOBIB (reseau transport en commun Bruxelles, Belgique) http://www.uclouvain.be/sites/security/mobib.html Calypso application similar to French NAVIGO 3B 6F 00 00 80 5A 2C 11 C3 10 10 05 7B 0A 1D BA 82 90 00 French military discount on SNCF trains card (Transport) 3B 6F 00 00 80 5A 2C 23 C2 10 10 05 .. .. .. .. 82 90 00 MOBIB (reseau transport en commun Bruxelles, Belgique) 3B 6F 00 00 80 5A 2C 23 C3 00 03 02 02 84 94 EA 82 90 00 MOBIB card for DeLijn (public transport operator for the Flemish part of Belgium) 3B 6F 00 00 80 5A 2C 23 C3 10 10 05 71 00 04 2B 82 90 00 NMBS/SCNB Mobility card (basically a train subscription) MoBIB 3B 6F 00 00 80 5A 2C 23 C3 10 10 05 71 02 C0 6C 82 90 00 SNCB/NMBS MOBIB Card (Transport) http://www.belgianrail.be/fr/titres-de-transport/mobib.aspx 3B 6F 00 00 80 5A 2C 23 C3 10 10 05 71 03 42 32 82 90 00 MOBIB Card http://www.mobib.be/mobib-card_EN.htm 3B 6F 00 00 80 5A 2C 23 C3 10 10 05 71 06 76 A1 82 90 00 Belgian eID card (issued in 2014) (eID) http://eid.belgium.be/en/ 3B 6F 00 00 80 5A 2C 23 C3 10 10 05 71 0A 78 9E 82 90 00 Mobib NMBS Mobility (Belgian railways) (Transport) http://www.belgianrail.be/en/travel-tickets/mobib/no-mobib.aspx 3B 6F 00 00 80 5A 2C 23 C4 10 10 05 C0 23 EB 06 82 90 00 MOBIB Basic (Transport) https://www.stib-mivb.be/Basic.html?l=fr 3B 6F 00 00 80 5A 2C 23 EA 00 03 05 02 AA E6 CE 82 90 00 MOBIB (TEC IT Easy) (Transport) http://www.infotec.be/fr-be/titresettarifs/mobib.aspx 3B 6F 00 00 80 5A 43 4F 4C 44 00 00 00 00 00 00 82 90 00 LBB Berlin, MasterCard (ADAC branding?) 3B 6F 00 00 80 66 45 46 01 38 18 03 53 02 31 10 82 90 00 Fábrica Nacional de Moneda y Timbre FNMT WG10 http://www.fnmt.es/es/html/tage/fichaTarjeta/fp1_ta_01.asp 3B 6F 00 00 80 66 45 46 01 38 18 03 53 02 31 24 82 90 00 Electronic purse of the Universidad Politecnica of Madrid (provided by Banco Santander) 3B 6F 00 00 80 66 45 46 01 38 18 03 53 07 61 04 82 90 00 Vitrasa Card municipal city card for Vigo, Spain. Electronic wallet for paying bus transportation. http://www.vitrasa.es/php/index.php 3B 6F 00 00 80 66 57 59 01 00 08 03 53 07 61 04 82 90 00 Green card of City council of Vigo (public transport) 3B 6F 00 00 80 66 57 59 01 00 08 03 53 07 61 14 82 90 00 E-money Vitrasa Card - Public transport in Vigo 3B 6F 00 00 80 66 A2 03 02 02 3D 07 53 02 31 10 82 90 00 Electronic purse of the Universidad Politecnica of Madrid (provided by Banco Santander) 3B 6F 00 00 80 66 B0 07 01 01 07 .. .. .. .. .. .. 90 00 Gemalto Santander Optelio TUI R7 with WG10 customized using Contact interface 3B 6F 00 00 80 66 B0 07 01 01 07 07 53 02 31 10 82 90 00 Banco Santander TUI/USC R7 - Gemalto Optelio/Desineo D72 (JavaCard) with WG10 (JavaCard) 3B 6F 00 00 80 66 B0 07 01 01 07 07 53 02 31 24 82 90 00 Banco Santander TUI/USC R7 - Gemalto Optelio/Desineo D72 (JavaCard) with WG10 and Maestro (JavaCard) 3B 6F 00 00 80 66 B0 07 01 01 77 07 53 02 31 10 82 90 00 University ID card (issued by Banco Santander Central Hispano) . Universidad Nacional de Educación a Distancia (UNED, Spain) http://www.uned.es/tarjeta . Universitat Politècnica de Catalunya (UPC.edu) https://www.upc.edu/identitatdigital . Universitat Ramon Llull (URL) http://www.url.edu/cont/url/carnet.php 3B 6F 00 00 80 66 B0 07 01 01 77 07 53 02 31 24 82 90 00 Santander 4B Maestro University of Santiago de Compostela. Spain Polytechnical University of Madrid, Spain 3B 6F 00 01 80 31 E0 6B 04 06 05 02 11 55 55 55 55 55 55 American Express "Entourage" credit card issued by CIBC http://www.cibc.com 3B 6F 00 FF 00 56 72 75 54 6F 6B 6E 73 30 20 00 00 90 00 ruToken-S (USB token) http://www.rutoken.ru/products/rutoken/rutoken-s/ 3B 6F 00 FF 52 53 41 53 65 63 75 72 49 44 28 52 29 31 30 RSA SecurID SID800 token 3B 6F 00 FF 53 46 53 45 2D 43 58 33 32 32 2D 56 18 02 02 Giesecke & Devrient SmartCafe Expert 2.0 3B 74 18 00 00 73 66 74 65 SafeSign from A.E.T. Europe B.V. Manufactured by Giesecke & Devrient (G&D) 3B 75 12 00 00 29 05 01 04 01 CAC Cryptographic Service Provider Axalto Cyberflex Access 64K V1 SM 4.1 3B 75 13 00 00 43 09 EA 90 00 Vitale 2 (french health card) 3B 75 13 00 00 44 09 EA 90 00 Carte Vitale 2 (Nouvelle version avec photo) 3B 75 13 00 00 45 09 EA 90 00 Carte Vitale 2 (French health card) 3B 75 13 00 00 46 09 EA 90 00 Health Care card 3B 75 13 00 00 47 09 EA 90 00 Carte Vitale (HealthCare) 3B 75 13 00 00 9C 02 02 01 02 Cyberflex Access 32k v2 3B 75 94 00 00 62 02 02 0[1-3] 01 Schlumberger Cyberflex 32K e-gate Gemalto TOP US (product code HWP115278A) 3B 76 11 00 00 00 9C 11 01 02 02 Schlumberger Cyberflex Access 32K 3B 76 11 00 00 00 9C 11 01 02 03 RSA SecureID 5100 3B 76 12 00 00 00 9C 11 01 03 03 Precise BioMatch (TM) JavaCard (Schlumberger) www.precisebiometrics.com 3B 76 13 00 00 80 62 07 41 81 80 Generic mass produced Motorola smart card 3B 76 13 00 00 80 62 07 41 81 81 TransLink card (discontinued San Francisco Bay Area transit card) 3B 76 98 00 00 00 9C 11 01 01 02 CyberFlex Access 32 3B 77 18 00 00 4B 41 53 41 4B 49 44 Identification Kazakhstan Republic (passport) 3B 78 12 00 00 47 C4 03 00 8F F1 90 00 Sattelite bg 23.5 East cryptoworks card 3B 78 12 00 00 54 C4 02 04 FF FF 6F 04 UPC Direct Satellite TV Card (Pay TV) http://www.upcdirect.com/ 3B 78 12 00 00 54 C4 03 00 8F F1 90 00 Skylink irdeto from Towercom a.s. company irdeto card for the ORF (Austrian national public television) HD channels 3B 78 12 00 00 65 C4 05 00 8F F1 90 00 Digitürk Cryptoworks 3B 78 12 00 00 65 C4 05 05 8F F1 90 00 Turkie Digiturk Cryptoworks 3B 78 12 00 00 A0 C4 03 06 8F F1 90 00 ORF Digital (Irdeto/Cryptoworks) (pay tv) 3B 78 12 00 00 A0 C4 03 07 8F F1 90 00 IRDETO-Smartcard for crytoworks for austrian television (ORF), DVB-s 3B 78 12 00 00 A0 C4 06 00 8F F1 90 00 Cryptoworks/Nagravision decoding card 3B 78 12 00 00 A0 C4 06 05 8F F1 90 00 Satellite cardu, provider: UPC DTH, CAID: 0D02 3B 78 12 00 00 A0 C4 06 07 8F F1 90 00 Skylink CZ/SK - Cryptoworks 3B 78 13 00 00 00 73 C8 40 10 00 90 00 credit/debit card from issued by Finnish credit authority Luottokunta Oy 3B 78 18 00 00 00 73 C8 40 00 00 00 00 90 00 VERISOFT REWARDO LOYALTY CARD and CUSTOM PERSONALIZATION PROJECTS FOR EXTERNAL ENTITIES (Loyalty) http://www.verisoft.com 3B 78 18 00 00 54 48 20 4E 49 44 20 37 Thailand National ID (eID) 3B 79 18 00 00 53 46 2D 34 43 43 2D 30 31 SmartCafe Expert 3.2 144K Dual interface card supports specifications ISO 14443A T=CL and ISO 7816 T=1/0. (PKI) http://www.smartcardfocus.com/shop/ilp/id~523/smartcafe-expert-3-2-144k-dual/p/index.shtml 3B 79 18 00 00 80 54 43 4F 4C 44 82 90 00 LBB VISA Card 3B 79 94 00 00 59 01 01 0E 01 6B 01 02 A9 Vending machine payment card ('Necta' brand) 3B 79 95 00 00 54 45 4C 45 4D 10 21 10 10 Israeli Identity Card (eID) http://smartid.gov.il/English/Pages/default.aspx 3B 79 98 00 00 50 01 01 04 01 00 01 01 A9 Gemalto PayFlex used in Aristocrat System 7000 Casino Management System (South Africa only) 3B 79 98 00 00 EB 03 01 00 00 70 01 01 A9 Casino Rio Patras, Greece 3B 7A 11 00 00 48 44 32 2E 30 34 6F FF 90 00 User Smartcard provided with the Hiddn Crypto Adapter (www.hiddn.no) 3B 7A 11 00 02 48 4F 53 54 06 03 19 02 90 00 Swedish bankcard with Mastercard from ICA-banken 3B 7A 13 00 00 00 09 A5 05 01 00 B7 01 A6 01 "cleyris" authentication card. monpass.santé from Mutuelle Générale 3B 7A 18 00 00 73 66 74 65 20 63 64 31 34 34 Republic Slovenia e-Gov, Ministry of Public Administration SIGOV-CA, Slovenian Governmental Certification Authority 3B 7A 18 00 00 73 66 74 65 2D 63 64 30 38 30 HYPOnet online banking card / Croatia 3B 7A 18 00 FF 4A 43 4F 50 32 31 56 32 33 31 JCOP21 18K 3B 7A 94 00 00 80 65 A2 01 01 01 3D 72 D6 41 Personal Identity card (passport) 3B 7A 94 00 00 80 65 A2 01 01 01 3D 72 D6 43 Gemplus GemXpresso Pro R3 E32 PK 3B 7A 95 00 00 80 65 A2 01 31 01 3D 72 D6 41 Emirates Identification authority UAE card (eID) http://sdk.emiratesid.ae/ 3B 7A 96 00 00 80 65 A2 01 01 01 3D 72 D6 43 AGH University of Science and Technology (Poland) - Student Identity Card (ELS) (eID) 3B 7A 96 00 00 80 65 A2 01 20 01 3D 72 D6 41 Oman eID (eID) 3B 7B .. 00 00 80 62 0. 51 56 46 69 6E 45 49 44 Setec SetCOS 5.1.0 3B 7B 18 00 00 00 31 C0 64 77 E3 03 00 82 90 00 Oberthur Cosmopolic 64K v5.2 D 3B 7B 18 00 00 00 31 C0 64 77 E9 10 00 01 90 00 Oberthur Card Systems: Cosmo 64 RSA V5.4 (ISK Key Set: 404142 .. 4E4F) 3B 7B 18 00 00 00 31 C0 64 90 E3 11 00 82 90 00 oberthur card in the middle http://postarca.posta.si/downloadfile.aspx?fileid=16918 (eID) http://postarca.posta.si/ 3B 7B 18 00 00 00 31 C0 64 C6 FC 10 00 07 90 00 Sberbank of the RUSSIAN federation 3B 7B 18 00 00 00 31 E8 54 27 E6 00 00 01 90 00 Oberthur ID-One COSMO 64k v.5 3B 7B 18 00 00 80 62 01 54 56 46 69 6E 45 49 44 FineID identity card for organizations http://fineid.fi/default.aspx?id=491 http://www.opensc-project.org/opensc/wiki/FinnishEid 3B 7B 94 00 00 80 62 1[1,2] 51 56 46 69 6E 45 49 44 Finnish Electronic ID card (fineid card www.fineid.fi) 3B 7B 94 00 00 80 65 B0 83 01 0[1,3] 74 83 00 90 00 Gemplus GemXpresso Pro R3 (E64 PK) 3B 7B 95 00 00 80 65 B0 83 01 04 74 83 00 90 00 Gemplus GemXpresso Pro 64K R3 FIPS v2 3B 7C 13 00 00 80 64 11 34 01 48 73 F7 41 C0 81 07 universal electronic card UEC Rissa (eID) http://www.uecard.ru/for-citizens/ 3B 7C 13 00 00 80 64 11 65 01 90 73 00 00 00 81 07 Universal Electronic Card (UEC Russia) (eID) 3B 7C 18 00 00 43 52 45 53 43 45 4E 44 4F 38 30 30 HID Global Crescendo C800 (PKI) http://www.hidglobal.com/products/cards-and-credentials/crescendo/c800 3B 7C 94 00 00 50 52 4F 47 45 58 49 41 43 53 50 32 mutual health Martinique (UFR PASS+) (HealthCare) 3B 7D 11 00 00 00 31 80 71 8E 64 52 D9 01 00 82 90 00 Oberthur Galactic V2 3B 7D 11 00 00 00 31 80 71 8E 64 77 E3 01 00 82 90 00 Oberthur Cosmo 64k RSA v5 3B 7D 11 00 00 00 31 80 71 8E 64 77 E3 02 00 82 90 00 Oberthur 64k v5/2.2.0 3B 7D 11 00 00 00 31 80 71 8E 64 86 D6 01 00 81 90 00 DOD-CAC 3B 7D 13 00 00 4D 44 57 2D 49 41 53 2D 43 41 52 44 32 IAS (Identification, Authentication, and electronic Signature) Premium, profil DGME from Sagem 3B 7D 18 00 00 00 31 80 71 8E 64 77 E3 01 00 82 90 00 Oberthur 64k v4/2.1.1 3B 7D 18 00 00 00 48 79 70 73 49 44 20 53 33 07 90 00 Safran Morpho YpsID S3 3B 7D 18 00 02 80 57 59 50 53 49 44 30 33 83 7F 90 00 Sagem YpsID s2 (SafeSign) 3B 7D 18 00 02 80 57 59 50 53 49 44 30 34 83 7F 90 00 Morpho e-CPF YpsID S2-11/11 (PKI) http://safeweb.com.br 3B 7D 94 00 00 55 55 53 0A 74 86 93 0B 24 7C 4D 54 68 SIM from sysmocom sysmoSIM-GR2 3B 7D 94 00 00 57 44 53 05 54 86 93 00 15 6A 5F 13 78 Idea Indian GSM operator SIM 3B 7D 94 00 00 57 44 53 24 65 86 93 02 05 81 74 10 57 kyivstar (Telecommunication) 3B 7D 94 00 00 57 44 53 24 65 86 93 02 10 B7 25 12 97 Kyivstar (Telecommunication) 3B 7D 94 00 00 57 44 53 63 96 86 93 00 9D F7 10 00 9D China Mobile SIM card 3B 7D 94 00 00 57 44 53 72 FD 86 93 11 01 06 75 5B 0F China Telecom UIM 64K 3B 7D 94 00 00 57 44 53 96 FA 86 93 03 B7 BF BF 5F 63 Airtel India SIM 3B 7D 94 00 00 57 44 53 99 64 86 93 12 03 00 00 63 46 Dtac (Telecommunication) 3B 7D 94 00 00 80 31 80 65 B0 83 01 01 90 83 00 90 00 GemSafeXpresso 16k R3.2 3B 7D 94 00 00 80 31 80 65 B0 83 01 02 90 83 00 90 00 Gem e-Seal (GemSafeXpresso 32k R3.2) Gemalto Classic TPC - IS 3B 7D 94 00 00 80 31 80 65 B0 83 02 04 7E 83 00 90 00 GXP Pro R3.2 64K, GemSafe applet MPCOS v1.11 card issued by Czech National Bank dual card: chip used for electronic certificates (czech commercial bank use such card to sign money transfer orders sent to national clearing central) 3B 7D 94 00 00 80 31 80 65 B0 83 11 00 AC 83 00 90 00 GemCombiXpresso R4 72K 3B 7D 94 00 00 80 31 80 65 B0 83 11 00 C8 83 00 90 00 personal identity card (ID card) of Republic of Lithuania LuxTrust card 3B 7D 94 00 00 80 31 80 65 B0 83 11 40 AC 83 00 90 00 GXP4 E72PK Applet V1 T=0 (PKI) 3B 7D 94 00 00 80 31 80 65 B0 83 11 48 C8 83 00 90 00 Online banking http://www.getinbank.pl/ 3B 7D 94 00 00 80 31 80 65 B0 83 11 C0 A9 83 00 90 00 GemXpresso R4 72K 3B 7D 95 00 00 80 31 80 65 B0 83 02 04 7E 83 00 90 00 Gemalto's Classic TPC HM CC Mifare 1K White PVC (Old name GemSafeXpresso 64K) 3B 7D 95 00 00 80 31 80 65 B0 83 11 .. .. 83 00 90 00 Portuguese ID Card (eID) http://www.cartaodecidadao.pt/ 3B 7D 96 00 00 80 31 80 65 B0 83 02 01 F3 83 00 90 00 Gemalto IDClassic 340 3B 7D 96 00 00 80 31 80 65 B0 83 11 00 C8 83 00 90 00 GEMALTO Clasic TPC IM CC 3B 7D 96 00 00 80 31 80 65 B0 83 11 11 AC 83 00 90 00 GEMALTO WM GX4 72 DHS TSA 3B 7D 96 00 00 80 31 80 65 B0 83 11 11 E5 83 00 90 00 eCPF (Cadastro de Pessoas Físicas) from Imprensa Oficial do Brasil 3B 7D 96 00 00 80 31 80 65 B0 83 11 13 AC 83 00 90 00 CAC card (GEMALTO GCX4 72K DI) 3B 7D 96 00 00 80 31 80 65 B0 83 11 17 D6 83 00 90 00 DoD CAC card issued Jan 14, 2010 GEMALTO TOPDLGX4 144 Geneva Conventions Identification Card 3B 7D 96 00 00 80 31 80 65 B0 83 11 40 AC 83 00 90 00 GemXpresso R4 64k 3B 7D 96 00 00 80 31 80 65 B0 83 11 40 C8 83 00 90 00 ING BusinessOnLine Bank eToken / Poland Gemalto Classic TPC - IM Iran Driving License ID card (eID) 3B 7D 96 00 00 80 31 80 65 B0 83 11 48 C8 83 00 90 00 Gemalto GemSafe V1 3B 7D 96 00 00 80 31 80 65 B0 83 11 C0 A9 83 00 90 00 Gemplus X-Presso Pro 64k 3B 7D 96 00 00 80 31 80 65 B0 83 11 C0 C8 83 00 90 00 TOP IM GX4 from Gemalto (was GemXpresso R4) Java Card 2.2.1 Global Platform 2.1.1 (amendment A) 3B 7D 96 00 00 80 31 80 65 B0 83 11 D0 A9 83 00 90 00 GemSafe V2 (2.04, GemP15-1) Gemplus GemXpresso Pro R3 E32PK Gemalto TOP IM GX4 3B 7D 96 00 00 80 31 80 65 B0 85 02 00 CF 83 01 90 00 Gemalto IDCore 3010 http://www.cryptoshop.com/gemalto-top-dm-cc.html 3B 7D 96 00 00 80 31 80 65 B0 93 11 D0 A9 83 00 90 00 Gemalto Classic TPC (Trusted PKI Card) IM Classic TPC IM (PKCS#15): 12 x RSA key containers (standard profile) 3B 7D 96 00 00 80 31 80 65 B0 A3 11 00 C8 83 00 00 00 Handelsbanken BankID card (Swedish bank authentication) 3B 7D 96 00 00 80 31 80 65 B0 A3 11 00 C8 83 00 90 00 Swedish eID (Telia IP5a) http://www.telia.se/privat/katalog/VisaProdukt.do?productRef=/privat/produkter_tjanster/bredband/tjanster/sakerhetstjanster/teliae-legitimation.1537014385.product 3B 7E 11 00 00 00 6A 11 63 54 08 30 24 01 .. .. 21 90 01 Sagem Windows for smart cards 3B 7E 13 00 00 00 31 C0 71 C6 65 01 B0 01 04 40 83 90 00 BahnCard / Commerzbank MasterCard Credit Card 3B 7E 13 00 00 00 31 C0 71 C6 65 01 B4 01 04 40 83 90 00 Portugal Millennium BCP MAESTRO debit Card 3B 7E 13 00 00 00 6A 11 63 54 05 48 .. .. .. 01 22 90 00 Sagem Windows for smart cards 3B 7E 94 00 00 80 25 A0 00 00 00 28 56 80 10 12 00 01 16 CryptoPlus CS xg 3B 7E 94 00 00 80 25 A0 00 00 00 28 56 80 10 12 00 01 19 Česká spořitelna personal certificate card 3B 7E 94 00 00 80 25 A0 00 00 00 28 56 80 10 12 81 01 17 Česká Spořitelna SERVIS24 certificate card http://smallhacks.wordpress.com/2012/05/04/exploring-servis24-certificate-card-from-the-ceska-sporitelna-bank/ 3B 7E 94 00 00 80 25 A0 00 00 00 28 56 80 10 21 00 01 14 CryptoPlus ProID, students ISIC card at University of Zilina, Slovakia TOP GX4 72k contact chip using JavaCard v2.2.1. and GlobalPlatform 2.1.1 3B 7E 94 00 00 80 25 A0 00 00 00 28 56 80 10 24 00 01 11 "OpenCard" - card issued by Prague local authority dual card: chip used for electronic certificates 3B 7E 94 00 00 80 25 D2 03 10 01 00 56 00 00 00 01 01 00 Personal identity card (ID card) of Czech Republic 3B 7E 94 00 00 80 31 80 66 47 50 91 45 03 13 83 0F 90 00 JTOP Trusted Logic 3B 7E 94 00 00 80 31 80 66 47 50 A4 45 05 11 83 0F 90 00 JTOP Trusted Logic 3B 7E 95 00 00 80 31 80 73 34 11 80 82 90 00 00 00 00 00 IAS (Identification, Authentication, and electronic Signature) Premium, profil DGME from Gemalto 3B 7F .. 00 00 00 6A 43 45 52 45 53 02 2C 34 02 ...03 90 00 Ceres ST v2 3B 7F .. 00 00 00 6A 43 45 52 45 53 02 2C 34 03 .. 03 90 00 Ceres ST v3 3B 7F .. 00 00 80 31 80 65 B0 .. .. .. .. 12 0F FE 82 90 00 IDPrime MD 8840, 3840, 3810, 840 and 830 Cards T=0 3B 7F 04 00 00 80 31 80 71 90 67 54 45 4D 44 41 2E 30 90 00 public key (PKI) 3B 7F 11 00 00 00 31 C0 53 CA C4 01 64 52 D9 04 00 82 90 00 DoD CAC, Oberthur CosmopolIC 32K V4 3B 7F 11 00 00 00 6A 43 45 52 45 53 02 2C 34 02 00 03 90 00 FNMT-CERES ST (Fábrica Nacional de Moneda y Timbre) 3B 7F 11 00 00 80 31 C0 52 14 1E 64 02 18 19 53 83 83 90 00 Advantis card http://www.sermepa.es/ingles/familiaadvantis.htm 3B 7F 11 00 00 80 31 C0 52 21 57 64 02 18 19 53 83 83 90 00 banking card (www.caixacatalunya.com) student id of Universitat Autonoma de Barcelona 3B 7F 11 00 00 80 31 C0 52 35 31 64 05 66 61 52 83 83 90 00 Oberthur Manufactured VISA Banking card (www.caixaterrassa.cat) 3B 7F 11 00 00 80 31 C0 52 3A 65 64 06 96 18 62 83 83 90 00 Visa Electron Triodos Bank Card (Bank) 3B 7F 13 00 00 80 31 C0 52 02 71 64 05 62 34 70 83 83 90 00 Mastercard Debit Card issued by Caixa d'Enginyers http://www.caixa-enginyers.com 3B 7F 13 00 00 80 31 C0 52 05 6E 64 02 53 04 36 83 83 90 00 Mastercard from Banc Sabadell in Spain 3B 7F 13 00 00 80 31 C0 52 06 E8 64 05 66 99 36 83 83 90 00 HSBC Debit VISA CARD MX (Bank) 3B 7F 13 00 00 80 31 C0 52 07 7D 64 05 66 99 36 83 83 90 00 VISA CEPSA (Porque tu vuelves) from Spain http://www.porquetuvuelves.com/ Visa Credit Card issued by Citibank http://www.citibank.es 3B 7F 13 00 00 80 31 C0 52 08 49 64 05 66 99 36 83 83 90 00 Spanish bank called BBVA 3B 7F 13 00 00 80 31 C0 52 08 4B 64 05 66 94 61 83 83 90 00 Visa Electron Card from a Spanish bank called "Caja de Ingenieros" 3B 7F 13 00 00 80 31 C0 52 0A 45 64 02 B3 02 37 83 83 90 00 Bancaja online (Visa) Card , Entity : Bancaja Bank Spain (Bankia currently) 3B 7F 13 00 00 80 31 C0 52 0A A6 64 02 B3 02 37 83 83 90 00 Credit card Visa Classic by "La Caixa" (Spain) 3B 7F 13 00 00 80 31 C0 52 0A D6 64 05 66 94 61 83 83 90 00 Visa Credit Card issued by Caixa d'Enginyers http://www.caixa-enginyers.com 3B 7F 13 00 00 80 31 C0 52 0B 71 64 05 66 98 36 83 83 90 00 OuroCard VISA International - Banco do Brasil 3B 7F 13 00 00 80 31 C0 52 0B BB 64 05 66 98 36 83 83 90 00 VISA OUROCARD Banco do Brasil S.A. 3B 7F 13 00 00 80 31 C0 52 0D 1E 64 05 66 94 61 83 83 90 00 Universitat Politecnica de Valencia ID Visa Electron Card http://www.upv.es 3B 7F 13 00 00 80 31 C0 52 0D EA 64 05 66 94 61 83 83 90 00 Universitat Rovira i Virgili Identification Card This card enables his/her propietary to sign documents and to access to rooms, laboratories and classes. 3B 7F 13 00 00 80 31 C0 52 0E D4 64 05 66 96 61 83 83 90 00 BBVA Blue Card (VISA) www.bluebbva.com 3B 7F 13 00 00 80 31 C0 52 11 2F 64 05 69 93 70 83 83 90 00 Banco do Brasil (Bank) http://www.bb.com.br/ 3B 7F 13 00 00 80 31 C0 52 12 93 64 02 B3 02 70 83 83 90 00 Visa Infinite issued by Banco do Brasil (www.bb.com.br) Manufactured by Giesecke & Devrient (G&D www.gi-de.com) 3B 7F 13 00 00 80 31 C0 52 13 0B 64 02 B3 02 37 83 83 90 00 Visa Ourocard Platinum from Banco do Brasil 3B 7F 13 00 00 80 31 C0 52 13 66 64 05 66 98 36 83 83 90 00 VISA Platinum from Banco do Brasil 3B 7F 13 00 00 80 31 C0 52 14 D5 64 05 66 96 61 83 83 90 00 Visa Electron Debit Card issued by Spain Caja Madrid (www.cajamadrid.es) 3B 7F 13 00 00 80 31 C0 52 15 54 64 05 66 98 36 83 83 90 00 VISA Card from Banc Sabadell in Spain 3B 7F 13 00 00 80 31 C0 52 15 CB 64 05 66 96 61 83 83 90 00 Bank, Spanish group BANKIA (www.bankia.es) Visa, Servired Manufactured by Saetic http://www.saetic.es/ 3B 7F 13 00 00 80 31 C0 52 16 1B 64 05 69 93 70 83 83 90 00 Card BNB National Bank of Bolivia - Debit Card (Bank) https://www.bnb.com.bo/ 3B 7F 13 00 00 80 31 C0 52 16 20 64 05 66 96 61 83 83 90 00 Bank, Spanish BBVA http://www.bbva.com/ Visa, Servired Manufactured by Oberthur http://www.oberthur.com/ 3B 7F 13 00 00 80 31 C0 52 16 43 64 05 69 93 70 83 83 90 00 Gemalto Debit Card cwbU1071682A1212 issued by BANCO DE CREDITO DEL PERU 3B 7F 13 00 00 80 31 C0 52 16 50 64 02 B3 02 70 83 83 90 00 Banrisul credit card (Bank) 3B 7F 13 00 00 80 31 C0 52 16 F5 64 05 69 93 70 83 83 90 00 Banco do Brasil (Bank) 3B 7F 13 00 00 80 31 C0 52 17 2D 64 02 B3 02 37 83 83 90 00 Spanish "cajamar" bank - Visa Electron Debit Card. Made by Tag Systems 3B 7F 13 00 00 80 31 C0 52 17 A0 64 02 B3 02 37 83 83 90 00 Credit card Visa Classic by "La Caixa" (Spain) 3B 7F 13 00 00 80 31 C0 52 17 B4 64 05 66 98 36 83 83 90 00 Credit Card Banorte International, México 3B 7F 13 00 00 80 31 C0 52 18 80 64 05 66 98 36 83 83 90 00 Visa Electron Debit Card issued by "la Caixa" 3B 7F 13 00 00 80 31 C0 52 18 97 64 02 B3 02 37 83 83 90 00 tool-valley (vale-pedagio) from Bradesco 3B 7F 13 00 00 80 31 C0 52 19 1B 64 02 B3 02 70 83 83 90 00 La Caixa Visa electron ATM Card (Bank) https://portal3.lacaixa.es/apl/tarjetas/catalogo/catalogo.index_es.html?idImagen=1041,14&filtro=DE 3B 7F 13 00 00 80 31 C0 52 1B F1 64 05 62 17 80 83 83 90 00 blueBBVA Visa (Bank) 3B 7F 13 00 00 80 31 C0 52 26 DE 64 05 62 34 70 83 83 90 00 debit card (Bank) 3B 7F 13 00 00 80 31 C0 52 34 D6 64 05 66 94 61 83 83 90 00 Visa Credit Card issued by Spain Obsidiana (www.obsidiana.com) 3B 7F 13 00 00 80 31 C0 52 35 0D 64 02 61 18 63 83 83 90 00 Visa Credit Card issued by Spain Caja Madrid (www.cajamadrid.es) 3B 7F 13 00 00 80 31 C0 52 36 42 64 05 66 94 61 83 83 90 00 Visa debit card issued by Spain Caja Madrid bank 3B 7F 13 00 FF 45 43 4F 53 76 31 31 30 28 63 29 50 46 42 4D ECOS-Card [Experimental Card Operating System V.1.1] by Philipp Maier http://www.runningserver.com/?page=runningserver.content.download.ecos 3B 7F 14 00 00 80 41 00 57 4A 2D 49 44 4D 36 34 83 7F 90 00 Electronic CPF in Brazil (Cadastro de Pessoas Físicas) http://pt.wikipedia.org/wiki/E-CPF 3B 7F 18 00 00 00 31 B8 64 50 23 EC C1 73 94 01 80 82 90 00 PENIT, Carte non ECC-France (eID) https://nantes.sso.intranet.justice.gouv.fr/ 3B 7F 18 00 00 00 31 C0 73 9E 01 0B 64 52 D9 03 00 82 90 00 Oberthur Galactic V3 (32k) 3B 7F 18 00 00 00 31 C0 73 9E 01 0B 64 52 D9 04 00 82 90 00 Oberthur CosmopolIC 32K v4 Fast ATR Oberthur Authentic 3B 7F 18 00 00 00 31 C0 73 9E 01 0B 64 52 D9 05 00 82 90 00 Oberthur 32k BIO 3B 7F 18 00 00 80 59 49 44 65 61 59 49 44 65 61 6C 5F 31 2E e-CNPJ issued by Fenacon (eID) http://www.fenacon.org.br 3B 7F 18 00 00 80 59 49 44 65 61 6C 5F 31 2E 34 83 07 90 00 Sagem YpsID s3 3B 7F 18 00 02 80 41 00 57 53 4F 41 4C 42 49 44 83 7F 90 00 Albanian ID Card (eID) https://www.aleat.al/ 3B 7F 38 00 00 00 6A 43 45 52 45 53 02 2C 34 02 02 03 90 00 WG10 3B 7F 38 00 00 00 6A 43 45 52 45 53 02 2C 34 03 10 03 90 00 Used card Aragón government (Aragón - España) 3B 7F 38 00 00 00 6A 43 45 52 45 53 02 2C 34 03 20 03 90 00 TiDcarm (Region de Murcia) (Government of the Autonomous region of Murcia, Spain) http://www.carm.es 3B 7F 38 00 00 00 6A 44 4E 49 65 00 02 4C 34 01 13 0F 65 81 DNI (Documento Nacional de Identidad), Spanish ID Card 3B 7F 38 00 00 00 6A 44 4E 49 65 [1,2]0 02 4C 34 01 13 03 90 00 DNI electronico (Spanish electronic ID card) http://www.dnielectronico.es 3B 7F 94 00 00 80 25 A0 00 00 00 28 57 80 10 30 01 00 01 00 ProID+ (PKI) http://proid.cz 3B 7F 94 00 00 80 31 80 65 B0 85 03 00 EF 12 0F FF 82 90 00 Gemalto Classic V4 Juridic Person's Token (PKI) 3B 7F 94 00 00 80 31 80 71 90 67 54 45 4D 44 31 2E 30 90 00 M.MAR (MEE GVB1.1/11.06) eID Tarjeta Electrónica del Ministerio de Defensa (M.MAR TEMDv1.0) https://www.commoncriteriaportal.org/files/epfiles/2004-03-ST.pdf 3B 7F 96 00 00 00 31 B8 64 40 70 14 10 73 94 01 80 82 90 00 IAS/ECC Gemalto (eID) 3B 7F 96 00 00 00 31 B8 64 40 F3 85 10 73 94 01 80 82 90 00 IAS ECC Type 1 3B 7F 96 00 00 00 6A 44 4E 49 65 10 01 01 55 04 00 03 90 00 DNIE Spain (eID) http://www.dnielectronico.es/ 3B 7F 96 00 00 00 6A 44 4E 49 65 10 01 77 98 03 11 03 90 00 DNI electronico (Spanish electronic ID card) (eID) http://www.dnielectronico.es 3B 7F 96 00 00 00 6A 44 4E 49 65 20 01 01 55 04 10 03 90 00 Spanish DNI (3.0 version) (eID) http://www.dnielectronico.es/PortalDNIe/ 3B 7F 96 00 00 00 6A 44 4E 49 65 20 01 77 98 03 11 03 90 00 Spanish ID card (DNIe) (eID) www.dnielectronico.es/ 3B 7F 96 00 00 00 6A 46 4E 4D 54 03 04 11 43 04 30 03 90 00 CERES Spanish SmartCard from the "Fabrica Nacional de Moneda y Timbre" (FNMT) (eID) http://www.cert.fnmt.es/ 3B 7F 96 00 00 80 31 80 65 B0 84 23 27 E5 12 0F FE 82 90 00 Gemalto IDPrime MD 3810 dual interface smartcard ISO 7816, ISO 14443 and NFC (PKI) http://www.smartcardfocus.com/shop/ilp/id~672/gemalto-idprime-md-3810-dual-interface-smartcard/p/index.shtml 3B 7F 96 00 00 80 31 80 65 B0 84 41 3D F6 12 00 4C 82 90 00 Serasa Experian (Other) 3B 7F 96 00 00 80 31 80 65 B0 84 41 3D F6 12 0F FE 82 90 00 Gemalto IDPrime MD 3B 7F 96 00 00 80 31 80 65 B0 85 02 01 F3 12 FF FE 82 90 00 Gemalto TOP IM GX4 (PKI) http://www.cryptotech.com.pl/compl/data/gemalto/pdf/TOP_GX4_Nov08.pdf 3B 7F 96 00 00 80 31 80 65 B0 85 03 00 EF 12 0F FE 82 90 00 Gemalto IDPrime MD 840 (PKI) http://www.gemalto.com/Products/IDPrime_MD/index.html 3B 7F 96 00 00 EA 5C BD F0 7A EB 65 41 89 4B 04 00 00 00 00 Gemalto TOP IM GX4 (Other) 3B 7F 98 00 00 80 5A 07 04 04 00 01 02 02 84 58 F2 82 90 00 Mobili'carte (Angoulême mobility services card) (Transport) http://www.mobilite-grandangouleme.fr/ 3B 80 80 01 01 ISO 14443 Type B without historical bytes Electronic Passport Spanish passport (2012) 3B 81 1F 00 CC 52 eToken R2 2242 3B 81 80 01 80 80 RFID - ISO 14443 Type A - NXP DESFire or DESFire EV1 "Reiner LoginCard" (or "OWOK", how they name it) - they have been distributed by a german computer magazine ("Computer BILD") https://cardlogin.reiner-sct.com/ Belgium A-kaart (Antwerp citycard) Oyster card - Transport for London http://en.wikipedia.org/wiki/Oyster_card 3B 82 00 55 18 GSM SIM of TIM ITalian mobile company 3B 82 00 55 19 GSM card 'Hi' (KPN brand) 3B 82 00 55 22 GSM-SIM TELE2 Smart (Estonia, prepaid or subscription) # cf SCL3711 Reference Manual: 3B 82 80 01 02 44 .. RFID - NFC Forum tag type 1 (Topaz) 3B 82 80 01 03 02 02 Visa Credit Card, issued by TargoBank 3B 82 80 01 47 92 D6 Beijing Bus (Transport) 3B 82 80 01 86 88 0D Beijing Municipal Administration Traffic Card (with cpu) (Transport) http://www.bmac.com.cn/ 3B 82 81 31 76 43 C0 02 C5 CardOS/M2 V2.01(SLE44CxxS) 3B 82 81 31 76 43 C1 03 C5 i.ti (ticket card for Collogne/Bonn) CardOS M2 Combi V2.02 (SLE44R42S) 3B 83 00 12 10 96 GSM-SIM T-Mobil D1 (900MHz) 3B 83 00 43 56 10 Comviq 2G SIM 3B 84 00 91 18 01 00 Proximus 075 Belgacom Mobile SIM 3B 84 80 01 00 00 90 00 95 German (test) passport issued in january 2010 Luxembourg passport (2012) United Kingdom passport (2010) 3B 84 80 01 01 10 00 06 12 Snapper New Zealand (Type A) 3B 84 80 01 01 10 00 09 1D snapper (www.snapper.co.nz) prepaid 14443A cards 3B 84 80 01 01 11 20 03 36 Snapper Sprat (Transport) https://www.snapper.co.nz/snapper-store/ 3B 84 80 01 01 11 20 03 36 90 00 TMES Total Mobility (Wellington City Council, New Zealand) 3B 84 80 01 04 38 33 B1 BB Dutch passport 3B 84 80 01 47 77 F4 00 C1 True Money Touch Sim (Thailand) 3B 85 00 12 02 01 00 96 GSM-SIM Victorvox D1 (900MHz) 3B 85 00 87 25 01 38 02 GSM-SIM Viag Interkom E2 Loop GSM (1800MHz) 3B 85 00 87 25 01 39 00 GSM-SIM Telfort (Netherlands) 900 MHz 3B 85 40 20 68 01 01 .. .. Schlumberger Cryptoflex 8k 3B 85 40 20 68 01 01 00 00 Schlumberger Cryptoflex 8k (no RSA key generation) 3B 85 40 20 68 01 01 03 05 Schlumberger Cryptoflex Key Generation 3B 85 40 20 68 01 01 05 01 Schlumberger Cryptoflex 8k (with RSA key generation) 3B 85 40 FE 68 01 01 02 04 Axalto CryptoFlex 8K 3B 85 40 FF 63 01 01 03 01 Axalto Cryptoflex 16K 3B 85 80 01 01 A2 13 10 91 35 Contact (7816-10) 2WBP (HealthCare) 3B 85 80 01 20 63 CB A0 00 2C Visa card from Banque populaire du nord/Casden 3B 85 80 01 20 63 CB A1 00 2D AIB Visa Debit Card, manufcatured by Oberthur (NFC interface) 3B 85 80 01 20 63 CB A1 80 AD bpaid: bpost prepaid Mastercard (contactless) http://www.bpost.be/site/fr/residential/finance/bpaid/index.html 3B 85 80 01 20 63 CB A5 A0 89 Visa contactless from Banque Populaire des Alpes (France) (Bank) 3B 85 80 01 20 63 CB AD 20 01 KBC Ireland MasterCard Debit Card (Bank) http://www.kbc.ie/ 3B 85 80 01 20 63 CB AD 80 A1 VISA Caisse d'Epargne (Bank) 3B 85 80 01 4A 4D 52 54 44 41 JMRTD - Java Machine Readable Travel Document (ePassport emulator http://jmrtd.org/) 3B 85 80 01 4D 79 45 49 44 78 MyEID 3B 85 80 01 5A 43 37 2E 35 31 BasicCard ZC7.5 32K (Other) http://www.basiccard.com 3B 85 80 01 5A 43 56 44 56 59 Card Issued by "Verkéiersverbond" Luxembourg "M Kaart" Card containing Tickets for all public transportation in the country of Luxembourg (Transport) https://mshop.lu/ http://http://www.mobiliteit.lu/ 3B 85 80 01 80 73 84 21 40 12 Dutch Biometric Passport 3B 85 C0 FA 21 63 80 63 01 01 05 1B Public Distribution System http://cg.nic.in/pdsonline/corepds/ 3B 86 40 20 68 01 01 02 04 AC Activcard Gold, SchlumbergerSema Cryptoflex 8k 3B 86 80 01 00 04 9A EE 00 CA BD ASK CPL 528 3B 86 80 01 03 02 02 11 00 00 15 cash bee card. transportation and payment in south korea (seoul) (Transport) http://cashbee.co.kr 3B 86 80 01 06 75 77 81 02 80 00 NXP Mifare DESFire EV1 8K / MF3ICD81 "OpenCard" - card issued by Prague local authority dual card: RFID (1k Mirfare) used for parkimeters and as public traffic ticket 3B 86 80 01 39 30 43 30 32 31 7E Chase Freedom VISA card 3B 86 80 01 44 49 20 30 32 4D 65 Lufthansa Miles & More Gold MasterCard PayPass Raiffeizen Bank, Russia, MasterCard paypass card 3B 86 80 01 44 49 20 30 32 56 7E DKB VISA paywave (Bank) http://www.visaeurope.com/en/cardholders/visa_paywave.aspx 3B 86 80 01 4A 43 4F 50 33 30 12 Mifare ProX T=CL 3B 86 80 01 4A 43 4F 50 33 31 13 JCOP BIO 31 Contactless Card 3B 86 80 01 4B 4F 4E 41 12 20 3E Citibank Russia, Mastercard paypass 3B 86 80 01 4B 4F 4E 41 14 11 09 Mastercard paypass enabled credit card 3B 86 81 31 70 34 45 50 41 20 45 4B 08 Austrian Quick E-purse "Einreichkarte" (transfer card) http://www.quick.at/ 3B 87 80 01 4D 52 54 44 31 2E 30 26 Russian Foreign Passport (passport) 3B 87 80 01 77 43 49 50 02 00 01 28 CIPURSE (transport) http://www.osptalliance.org/ 3B 87 80 01 80 31 80 73 96 12 80 40 Public transport: VRS Verkehrsverbund Rhein-Sieg (Germany, North_Rhine-Westphalia) http://www.vrsinfo.de/englisch/the-vrs/vrs-about-us.html 3B 87 80 01 80 31 B8 73 84 01 E0 19 Personalausweis (German Identity Card) (eID) 3B 87 80 01 80 31 C0 73 D6 20 C0 32 RFID GeldKarte (girogo) 3B 87 80 01 80 31 C0 73 D6 21 C0 33 Sparkasse Hannover - German contactless GeldKarte (RFID, NFC, girogo) https://www.geldkarte.de/_www/en/pub/geldkarte/service_navigation/about_us.php 3B 87 80 01 C1 05 2F 2F 01 BC D6 A9 RFID - ISO 14443 Type A - NXP Mifare Plus 3B 87 81 31 40 43 4D 46 43 20 31 33 31 6F Telekom Paycard 3B 88 01 4B 41 5A 54 4F 4B 45 4E 82 Kaztoken (eID) http://kaztoken.kz/ 3B 88 80 01 00 00 00 00 00 00 00 00 09 Personalausweis (German Identity Card) (eID) 3B 88 80 01 00 00 00 00 00 41 91 00 D9 EffiTIC (Transport) www.effitic.com 3B 88 80 01 00 00 00 00 00 71 71 00 09 OPUS Public Transport card (Montreal, Quebec, Canada) - Oberthur based http://carteopus.info/ ACTV (Italy) transport card (RFID) 3B 88 80 01 00 00 00 00 00 71 81 00 F9 Navigo Découverte (RFID interface) (Transport) 3B 88 80 01 00 00 00 00 00 81 87 00 0F ING Bank Card (Bank) https://www.ing.nl/particulier/betalen/passen/betaalpas/contactloos-betalen-met-uw-betaalpas/index.html 3B 88 80 01 00 00 00 00 00 81 91 10 09 Trenitalia (Italy) fidelity card "CartaFreccia" (RFID) 3B 88 80 01 00 00 00 00 03 81 91 00 1A Italian healthcare card (TS) National Service Card (CNS) NFC Interface (eID) 3B 88 80 01 00 00 00 00 33 81 81 00 3A Interparking MOBIB basic - RFID/Smartcard car park and car wash token 3B 88 80 01 00 00 00 00 77 83 95 00 00 MULTOS (PKI) 3B 88 80 01 00 00 00 00 B3 71 71 .0 .A Public transportation card in Riga, Latvia, called "e-Talons" http://etalons.rigassatiksme.lv/en/payments/activating_the_e-ticket/ Belgian MOBIB (transport) 3B 88 80 01 00 00 01 07 01 72 90 00 EC Belgian passport (2008-2009) 3B 88 80 01 00 73 C8 40 00 00 90 00 62 NXP JCOP 31 V2.2 36K - RFID I/F Barclaycard Visa Wave & Pay - RFID I/F 3B 88 80 01 00 73 C8 40 13 00 90 00 71 Nokia 6131 NFC phone http://wiki.forum.nokia.com/index.php/Nokia_6131_NFC_-_FAQs Giesecke & Devrient’s (G&D) Sm@rtCafé Expert 3.1 3B 88 80 01 00 DD A6 11 F7 71 85 00 60 "Pyrelis" card, PAU (France) public transport card. (Calypso card). (Transport) http://www.reseau-idelis.com/930-Billettique-IDELIS.html 3B 88 80 01 04 02 00 20 00 71 C1 40 DF Seoul Citypass+ T-Money Card 3B 88 80 01 1C 2D 94 11 F7 71 85 00 BE CEPAS Card (Adult card issued by EZ-Link) (Transport) 3B 88 80 01 1C 91 26 11 F7 71 85 00 B0 NETS Singapore contactless payment card http://www.nets.com.sg/ 3B 88 80 01 1C F0 E1 11 F7 71 85 00 16 CEPAS Card (Concession card issued by Land Transport Authority Singapore) (Transport) 3B 88 80 01 31 CC CC 01 77 81 C1 00 0E Ideal v 1.4 (Transport) 3B 88 80 01 43 4C 61 69 72 65 20 36 0F VISA credit card with NFC payment function (Bank) http://www.visa.ca/en/personal/visa-paywave/index.jsp 3B 88 80 01 4A 43 4F 50 76 32 34 31 5E RFID - ISO 14443 Type A - NXP JCOP NXP J3A081 JavaCard (contactless interface) 3B 88 80 01 53 4B 55 50 01 00 00 00 15 Silesian public services card (Transport) http://www.kartaskup.pl 3B 88 80 01 80 66 B0 07 01 01 07 .. .. Gemalto Santander Optelio TUI R7 with WG10 using Contactless interface 3B 88 80 01 C9 12 07 52 02 00 81 10 14 electronic Tickes from the german Transport Association VGN (Verkehrsgemeinschaft Niederrhein) 3B 88 80 01 D1 03 86 05 00 80 80 00 58 Resident Identity Card of People Republic of China (Second Generation with RF Feature) (eID) http://www.gov.cn/banshi/2005-08/02/content_19457.htm 3B 88 80 01 E1 F3 5E 11 73 81 A5 00 03 US passport (2007) 3B 88 80 01 E1 F3 5E 11 77 81 A5 00 07 US passport (2012) 3B 88 80 01 E1 F3 5E 11 77 81 C7 20 45 French passport (2007-2008) 3B 88 80 01 E1 F3 5E 11 77 83 00 00 A0 Residence permit (eID) http://de.wikipedia.org/wiki/Aufenthaltstitel 3B 88 80 01 E1 F3 5E 11 77 83 95 00 35 French biometric ePassport (issued in 2012) 3B 88 80 01 E1 F3 5E 11 77 83 D5 00 75 German Passport (ePass) (issued June 2009) 3B 88 80 01 E1 F3 5E 13 77 83 00 00 A2 ePerso - German ID card (issued 2013) 3B 88 80 01 E1 F3 5E 13 77 83 D5 00 77 ePerso - German ID card (issued 2011) 3B 88 81 31 20 55 00 57 69 6E 43 61 72 64 29 SmartCard for Windows 1.0 3B 89 00 91 26 91 06 00 01 22 01 00 BT Cellnet SIM 3B 89 00 91 26 91 09 00 01 43 02 00 O2 (UK) SIM - Pay As You Go (Telecommunication) 3B 89 40 14 47 47 32 36 4D 35 32 38 30 GSM-SIM e-plus (1800MHz) 3B 89 80 01 00 64 04 15 01 02 00 90 00 EE German Passport (issued Apr 2007) 3B 89 80 01 45 4D 56 20 30 33 20 20 06 73 Lufthansa Miles & More Gold MasterCard PayPass (old one) Found a reference pointing to NXP http://www.usingrfid.com/news/read.asp?lc=l17607hx1500zk 3B 89 80 01 4A 43 4F 50 32 34 32 52 32 4A NXP JCOP J3D 3B 89 80 01 4A 43 4F 50 33 31 56 32 32 4A JCOP 31 v22 72K (with Mifare 1K emulation) - RFID I/F 3B 89 80 01 4A 43 4F 50 34 31 56 32 32 4D New Zealand e-Passport Philips Semiconductor JCOP41V22 3B 89 80 01 4D 54 43 4F 53 73 01 02 01 3F Contactless MTCOS http://www.masktech.de/ 3B 89 80 01 4D 54 43 4F 53 73 02 01 04 3A Biometric passport of Czech republic Biometric passport of Libya 3B 89 80 01 53 50 4B 32 35 44 49 90 00 DA SPK 2.5 D1 3B 89 80 01 66 4A 41 43 4F 53 32 2E 30 16 MasterCard, Credit Card by TargoBank, Germany -- (Bank) 3B 89 80 01 66 52 57 45 32 50 52 4F 4D 1C This is NFC enabled SIM card. (Telecommunication) 3B 89 80 01 80 57 4A 4D 56 50 72 6F 33 F0 PayPal UK MasterCard Contacless 3B 89 80 01 80 67 04 12 B0 03 05 01 02 4C Austrian Passport 3B 8A 00 91 01 00 16 00 01 16 01 00 96 GSM-SIM T-Mobil D1 (900MHz) 3B 8A 00 91 01 00 16 00 01 20 01 00 96 GSM-SIM T-D1 prepaid (Xtra) 3B 8A 00 91 01 00 16 00 01 20 02 00 96 GSM-SIM (900MHz) card of the carrier t-mobile for their cellular network (phase 2+ with 3V) 3B 8A 00 91 91 00 16 00 01 03 0[3,4] 00 96 GSM-SIM max.mobil (since 2002: T-Mobile Austria) 3B 8A 00 91 91 00 17 00 01 07 02 00 96 GSM-SIM T-Mobile Austria 3B 8A 00 91 91 00 17 00 01 07 03 00 96 T-Mobile prepaid 2G SIM 3B 8A 00 91 91 00 17 00 01 08 01 00 96 GSM-SIM T-Mobile Austria 3B 8A 00 92 01 26 91 07 00 01 93 03 00 Kazakhstan driver licence 3B 8A 00 92 02 03 91 08 00 01 01 04 00 32K SIM Card from the austrian telecom "ONE" 3B 8A 01 4A 43 4F 50 34 31 56 32 32 31 FF JCOP41 3B 8A 80 01 00 31 C1 73 C8 40 00 00 90 00 90 NXP PN65o's Internal Secure Element in card emulation mode. (Other) 3B 8A 80 01 00 64 05 5C 02 03 31 80 90 00 16 T-System Contactless Netkey Card 3B 8A 80 01 00 64 05 76 02 03 31 80 90 00 3C T-System Contactless TCOS Min 3B 8A 80 01 4A 33 41 30 38 31 56 32 34 31 6B NXP JCOP CJ3A081 (NFC) (JavaCard) 3B 8A 80 01 4A 43 4F 50 33 31 56 32 33 32 7A Snapper New Zealand (JCOP) 3B 8A 80 01 4A 43 4F 50 34 31 56 32 32 31 7F NXP JCOP 41 v2.2.1 72k RFID I/F 3B 8A 80 01 80 31 B8 73 84 01 E0 82 90 00 06 German ID Card - Personalausweis 3B 8A 80 01 80 31 F8 73 F7 41 E0 82 90 00 75 ePerso - German ID card 3B 8A 80 01 80 65 A2 01 01 01 3D 72 D6 43 97 Gemplus GemXpresso Pro R3 E32 PK (combi) 3B 8B 01 52 75 74 6F 6B 65 6E 20 44 53 20 C1 Rutoken ECP (DS) 3B 8B 01 52 75 74 6F 6B 65 6E 20 45 43 50 A0 Rutoken ECP 3B 8B 01 52 75 74 6F 6B 65 6E 44 53 42 54 D7 Rutoken ECP Bluetooth (eID) http://www.rutoken.ru 3B 8B 01 52 75 74 6F 6B 65 6E 6C 69 74 65 C2 Aktiv Rutoken lite token 3B 8B 80 01 00 31 C0 64 B0 FC 10 00 00 90 00 53 Thai Passport 2010, 2011 3B 8B 80 01 00 64 04 11 01 01 31 80 00 90 00 5A German Passport (issued Nov 2006) United Kingdom e-Passport Luxembourg passport (2007) 3B 8B 80 01 0B 78 80 82 02 44 49 20 30 32 4D 1B Mastercard Debit issued by Raiffeisen bank in Czech Republic 3B 8B 80 01 20 90 00 00 00 00 00 16 14 CD AA DF JCOP 41 IBM card for Guizhou Normal University (JavaCard) 3B 8B 80 01 4E 58 50 2D 4E 46 43 20 32 00 00 38 TouchandTravel Touchpoint NFC-Card. Train-Station in Berlin. Use a NFC-compliant phone to check in for a ticket. 3B 8B 80 01 65 4B 54 50 30 44 32 65 4B 54 50 4C NXP smart eID - Indonesia ektp (eID) 3B 8B 80 01 86 88 FF 6F 39 1E 74 3C 20 08 00 D3 Chinese ICBC (bank) 3B 8B 81 31 40 34 53 4D 41 52 54 53 43 4F 50 45 31 6D Zeeland kaart (Telecommunication) 3B 8C 01 4D 79 53 6D 61 72 74 4C 6F 67 6F 6E A5 EIDVirtual (USB key emulated as a virtual smart card) (PKI) http://www.mysmartlogon.com/eidvirtual/ 3B 8C 80 01 04 43 FD .. .. .. .. .. .. .. .. .. .. RFID - NFC Forum tag type 3 (FeliCa) 3B 8C 80 01 4F 54 49 44 28 94 B3 C0 01 00 90 00 45 Belgian passport (2009-2013) 3B 8C 80 01 4F 54 49 44 28 94 F7 C0 00 00 90 00 00 French passport (2010-2013) 3B 8C 80 01 50 01 BA 13 7E 00 00 00 00 B3 71 71 38 Mobib (Brussels public transportation card) 3B 8C 80 01 50 18 61 88 CE E1 F3 5E 11 77 81 C7 0E French passport (2007-2008) 3B 8C 80 01 50 38 0E B2 5B 00 00 00 00 B3 71 71 31 BIP (Biglietto Integrato Piemonte) Card, GTT (Gruppo Trasporti Torinese) (Transport) http://bip.piemonte.it/ 3B 8C 80 01 50 64 E6 5B 00 00 00 00 00 00 81 80 85 Chicago CTA Ventra Transit card https://www.ventrachicago.com/ 3B 8C 80 01 50 77 3B 2D BD 00 00 00 11 00 81 85 94 Texas Instruments Dynamic NFC Interface Transponder (RF430CL330H) 3B 8C 80 01 50 7F 9C 66 8A 00 00 00 00 00 81 87 54 NFC Mastercard issued by CSOB bank Czech Republic, first 4 digits 5168 3B 8C 80 01 50 B1 56 D8 BB 00 00 00 11 00 81 85 CC TI rf430cl330h (Other) http://www.ti.com/product/rf430cl330h 3B 8C 80 01 50 D9 4E 7D 00 00 00 00 00 00 81 80 B6 Chicago CTA Ventra Transit card (Transport) https://www.ventrachicago.com/ 3B 8C 80 01 50 FF FF FF FF FF FF FF 22 00 10 51 C1 Printer ribbon tag (Other) 3B 8C 80 01 59 75 62 69 6B 65 79 4E 45 4F 72 33 58 Yubikey Neo 3B 8C 80 01 80 5A 41 4B 44 65 44 4C 76 31 2E 30 AD Electronic driving license card http://www.akd.hr/?p=10 3B 8C 80 01 80 91 E1 65 77 01 01 03 06 82 90 00 F8 french BIO Passeport (2006) 3B 8C 80 01 80 91 E1 65 D0 00 43 00 00 82 90 00 19 French passport (issued in late 2008) 3B 8C 80 01 80 91 E1 65 D0 00 46 00 00 82 90 00 1C US passport (2009) 3B 8D 80 01 0D 78 80 84 02 00 73 C8 40 13 00 90 FF F8 Nokia 6212 phone seen as NFC device 3B 8D 80 01 0D 78 F7 B1 02 4A 43 4F 50 76 32 34 31 6A Electronic Identity For Students at university (eID) 3B 8D 80 01 73 66 74 65 2D 63 64 30 38 30 2D 6E 66 3F G&D SmartCafe Expert 3.2 80K Dual 3B 8D 80 01 80 31 80 65 B0 07 02 02 89 83 00 90 00 75 JCOP30 contactless interface 3B 8D 80 01 80 91 E1 65 D0 00 5B 01 03 73 D4 41 40 B6 French passport (2010-2011) 3B 8E 80 01 00 51 31 63 1F 59 01 73 9F 20 C0 C0 90 00 17 Identity card (eID) Republic of Latvia (eID) http://www.pmlp.gov.lv/en/home/services/personal-certificates-%28eid%29/ 3B 8E 80 01 0E 78 33 C4 02 00 64 04 15 01 02 00 90 FF 95 Spanish Passport 3B 8E 80 01 10 38 77 A7 80 91 E1 65 D0 00 42 00 00 82 72 Czech Republic e-Passport (issued Feb 2009) 3B 8E 80 01 13 78 80 80 02 46 49 4F 4D 4B 5F 30 30 31 4E MasterCard/PayPass Card issued by Czech FIO Banka a.s. (contactless chip) note the ASCII string 'FIOK_001N' embedded in ATR 3B 8E 80 01 52 46 49 44 49 4F 74 20 4A 43 4F 50 38 30 5A RFIDIOt G&D SmartCafe 80K 3B 8E 80 01 80 31 80 66 40 90 89 12 08 02 83 01 90 00 0B ISO 14443B Type T = CL Infineon Card 3B 8E 80 01 80 31 80 66 B0 07 03 00 AC 01 83 00 90 00 52 BCA Flazz Card (Bank) www.bca.com 3B 8E 80 01 80 31 80 66 B0 84 0C 01 6E 01 83 00 90 00 1D Barclaycard Platinum contact/contactless (wave) 3B 8E 80 01 80 31 80 66 B0 84 12 01 6E 01 83 00 90 00 03 Contactless Barclaycard Visa MyCiti Transport Card MasterCard PayPass (Cape Town, South Africa) 3B 8E 80 01 80 31 80 66 B1 84 0C 01 6E 01 83 00 90 00 .. Gemalto Santander Optelio TUI R7 using Contactless interface 3B 8E 80 01 80 31 80 66 B1 84 0C 01 6E 01 83 00 90 00 1C UK Lloyds Bank Gold Visa Debit (Contact & Contactless) 3B 8E 80 01 80 91 91 31 C0 64 77 E3 03 00 83 82 90 00 1C Belgian Passport (2005) Thai Passport 2005 3B 8E 80 01 80 91 E1 31 C0 64 77 E3 03 00 83 82 90 00 6C Belgian Passport (2006-2007) 3B 8F 00 80 31 E0 73 FE 21 11 63 40 72 62 83 07 90 00 Beeline (Telecommunication) http://beeline.ru 3B 8F 00 80 31 E0 73 FE 21 13 57 4A 33 0E 20 33 31 00 MegaFon RUS (Telecommunication) http://megafon.ru 3B 8F 01 80 25 A0 00 00 00 56 57 44 4B 34 30 30 06 00 B7 SafeNet IKey4000 3B 8F 80 01 00 31 B8 64 04 B0 EC C1 73 94 01 80 82 90 00 0E Contactless CPS v3 Card (Carte de Professionnel de Santé) 3B 8F 80 01 43 55 32 69 AA 20 20 20 20 20 20 20 20 20 20 E9 UBS Access Card (Mobile Online Banking, NFC, Switzerland) 3B 8F 80 01 45 50 41 00 00 00 00 .. .. .. .. 00 .. .. .. .. Austrian Quick E-purse contactless http://www.quick.at/ 3B 8F 80 01 52 46 49 44 49 4F 74 20 4A 43 4F 50 20 33 36 76 RFIDIOt JCOP 36K Blank http://rfidiot.org 3B 8F 80 01 52 46 49 44 49 4F 74 20 4A 43 4F 50 20 37 32 76 RFIDIOt JCOP 72K Blank http://rfidiot.org 3B 8F 80 01 52 46 49 44 49 4F 74 20 4A 43 4F 50 37 32 72 24 RFIDIOt JCOP 72K RANDOM_UID Blank http://rfidiot.org 3B 8F 80 01 56 69 6E 50 61 79 53 79 73 20 50 75 72 73 65 2F JCOP (Other) 3B 8F 80 01 80 31 80 65 B0 .. .. .. .. 12 0F FE 82 90 00 .. IDPrime MD 3810 T=Contactless (Prox DU) # Cf PCSC standard, Part 3, Chapter 3.1.3.2.3.2, and Part 3 Supplemental # Document # http://www.pcscworkgroup.com/specifications/specdownload.php 3B 8F 80 01 80 31 80 65 B0 84 23 27 E5 12 0F FE 82 90 00 7E Gemalto IDPrime MD 3810 Blank Card (Other) http://www.gemalto.com/products/IDPrime_MD/index.html 3B 8F 80 01 80 31 80 65 B0 85 03 00 EF 12 0F FE 82 90 00 72 Gemalto IDPrime MD 3840 http://www.gemalto.com/dwnld/6891_IDPrimeMD3840_Product_Datasheet_May14.pdf 3B 8F 80 01 80 31 E0 6B 06 16 05 02 8C 55 55 55 55 55 55 AF Air Miles American Express card (contactless) (Bank) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 01 00 00 00 00 .. Mifare Standard 1K (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 02 00 00 00 00 .. Mifare Standard 4K (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 03 00 00 00 00 .. Mifare Ultralight (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 04 00 00 00 00 .. SLE55R_XXXX (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 06 00 00 00 00 .. SR176 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 07 00 00 00 00 .. SRI X4K (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 08 00 00 00 00 .. AT88RF020 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 09 00 00 00 00 .. AT88SC0204CRF (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 0A 00 00 00 00 .. AT88SC0808CRF (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 0B 00 00 00 00 .. AT88SC1616CRF (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 0C 00 00 00 00 .. AT88SC3216CRF (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 0D 00 00 00 00 .. AT88SC6416CRF (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 0E 00 00 00 00 .. SRF55V10P (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 0F 00 00 00 00 .. SRF55V02P (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 10 00 00 00 00 .. SRF55V10S (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 11 00 00 00 00 .. SRF55V02S (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 12 00 00 00 00 .. TAG_IT (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 13 00 00 00 00 .. LRI512 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 14 00 00 00 00 .. ICODESLI (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 15 00 00 00 00 .. TEMPSENS (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 16 00 00 00 00 .. I.CODE1 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 17 00 00 00 00 .. PicoPass 2K (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 18 00 00 00 00 .. PicoPass 2KS (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 19 00 00 00 00 .. PicoPass 16K (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 1A 00 00 00 00 .. PicoPass 16Ks (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 1B 00 00 00 00 .. PicoPass 16K(8x2) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 1C 00 00 00 00 .. PicoPass 16KS(8x2) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 1D 00 00 00 00 .. PicoPass 32KS(16+16) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 1E 00 00 00 00 .. PicoPass 32KS(16+8x2) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 1F 00 00 00 00 .. PicoPass 32KS(8x2+16) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 20 00 00 00 00 .. PicoPass 32KS(8x2+8x2) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 21 00 00 00 00 .. LRI64 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 22 00 00 00 00 .. I.CODE UID (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 23 00 00 00 00 .. I.CODE EPC (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 24 00 00 00 00 .. LRI12 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 25 00 00 00 00 .. LRI128 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 26 00 00 00 00 .. Mifare Mini (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 27 00 00 00 00 .. my-d move (SLE 66R01P) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 28 00 00 00 00 .. my-d NFC (SLE 66RxxP) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 29 00 00 00 00 .. my-d proximity 2 (SLE 66RxxS) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 2A 00 00 00 00 .. my-d proximity enhanced (SLE 55RxxE) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 2B 00 00 00 00 .. my-d light (SRF 55V01P) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 2C 00 00 00 00 .. PJM Stack Tag (SRF 66V10ST) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 2D 00 00 00 00 .. PJM Item Tag (SRF 66V10IT) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 2E 00 00 00 00 .. PJM Light (SRF 66V01ST) (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 2F 00 00 00 00 .. Jewel Tag (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 30 00 00 00 00 .. Topaz NFC Tag (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 31 00 00 00 00 .. AT88SC0104CRF (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 32 00 00 00 00 .. AT88SC0404CRF (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 33 00 00 00 00 .. AT88RF01C (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 34 00 00 00 00 .. AT88RF04C (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 .. 00 35 00 00 00 00 .. i-Code SL2 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 00 00 00 00 00 00 00 68 NFC/RFID "Android Beam" mode on a Sony Xperia Ion 3B 8F 80 01 80 4F 0C A0 00 00 03 06 01 .. .. 00 00 00 00 .. RFID - ISO 14443 Type A Part 1 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 02 .. .. 00 00 00 00 .. RFID - ISO 14443 Type A Part 2 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 .. .. 00 00 00 00 .. RFID - ISO 14443 Type A Part 3 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 00 00 00 00 00 6B buss/train pass for use with Skånetrafiken (www.skanetrafiken.se) busses and trains. public libary of Düsseldorf http://www.duesseldorf.de/stadtbuechereien/ specialized Mifare Ultralight card 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 01 00 00 00 00 6A Philips MIFARE Standard (1 Kbytes EEPROM) http://www.nxp.com/#/pip/pip=[pfp=41863]|pp=[t=pfp,i=41863] RFID - ISO 14443 Type A - Transport for London Oyster ACOS5/1k Mirfare RFID - ISO 14443 Type A - NXP Mifare card with 1k EEPROM vivotech ViVOcard Contactless Test Card Bangkok BTS Sky SmartPass 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 02 00 00 00 00 69 RFID - ISO 14443 Type A - NXP Mifare card with 4k EEPROM Bangkok Airport Link Dutch ov-chipkaart (public transportation) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 03 00 00 00 00 68 RFID - ISO 14443 Type A - NXP Mifare Ultralight or UltralightC 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 00 FF 00 00 00 00 94 ACTV (Italy) prepaid transport ticket "NFC Tag" — Sony's "Smart Tags" 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 F0 04 00 00 00 00 9F NFC FORUM TYPE 1 TAG www.inovision-group.com/topaz ISO/IEC 14443A - 96 Bytes read/write NFC/RFID IC mandated by NFC Forum as the Type 1 NFC Forum Tag Format. 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 F0 11 00 00 00 00 8A Bangkok Metro (MRT) HTC One X Android phone (European edition "endaevoru") 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 FF 40 00 00 00 00 D4 Nokia N9 3B 8F 80 01 80 4F 0C A0 00 00 03 06 03 FF 88 00 00 00 00 1C Infineon Mifare SLE 66R35 http://www.infineon.com/cms/en/product/channel.html?channel=ff80808112ab681d0112ab69686e01ee "Old" "unlimited trips" card for Moscow Metro (underground) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 05 .. .. 00 00 00 00 .. RFID - ISO 14443 Type B Part 1 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 06 .. .. 00 00 00 00 .. RFID - ISO 14443 Type B Part 2 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 07 .. .. 00 00 00 00 .. RFID - ISO 14443 Type B Part 3 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 07 00 00 00 00 00 00 6F Atmel AT88RF04C CryptoRF 3B 8F 80 01 80 4F 0C A0 00 00 03 06 07 43 44 60 02 01 E4 EF "Andante" Card, Porto (Portugal) metro card. (ISO14443 B CTS/CTM512B) (Transport) http://www.transportespublicos.pt/en/glossary/andante-ticket-system/ 3B 8F 80 01 80 4F 0C A0 00 00 03 06 09 .. .. 00 00 00 00 .. RFID - ISO 15693 Part 1 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0A .. .. 00 00 00 00 .. RFID - ISO 15693 Part 2 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0A 00 1C 00 00 00 00 7E RFID - HID iCLASS 16K CL 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0B .. .. 00 00 00 00 .. RFID - ISO 15693 Part 3 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0B 00 00 00 00 00 00 63 RFID - ISO 15693 - EM Microelectronic-Marin SA 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0B 00 0E 00 00 00 00 6D RFID - ISO 15693 - Infineon 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0B 00 12 00 00 00 00 71 RFID - ISO 15693 - Texas Instrument 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0B 00 13 00 00 00 00 70 Discovery kit for M24LR04E http://www.st.com/m24lr04e-discovery 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0B 00 14 00 00 00 00 77 Philips ICode RFID - ISO 15693 - Philips Semiconductors 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0C .. .. 00 00 00 00 .. RFID - ISO 15693 Part 4 (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0D .. .. 00 00 00 00 .. Contact (7816-10) I2C (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0E .. .. 00 00 00 00 .. Contact (7816-10) Extended I2C (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 0F .. .. 00 00 00 00 .. Contact (7816-10) 2WBP (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 10 .. .. 00 00 00 00 .. Contact (7816-10) 3WBP (as per PCSC std part3) 3B 8F 80 01 80 4F 0C A0 00 00 03 06 11 00 3B 00 00 00 00 42 Rinkai Suica Octopus, MTR network from Hong Kong, 2014 3B 8F 80 01 80 4F 0C A0 00 00 03 06 40 00 00 00 00 00 00 28 HID Proximity. Used to access buildings. Reference on the card "HID0008P". http://www.hidglobal.com/product-display/cards-and-credentials/hid-proximity 3B 8F 80 01 80 5A 08 03 03 00 00 00 01 52 43 21 82 90 00 FF Carte Mode Pass (Used in Clermont-Ferrand, France, to store personal information and T2C subscription. T2C is the public transport company of Clermont-Ferrand) http://www.t2c.fr/ 3B 8F 80 01 80 5A 08 03 03 00 00 00 01 D3 37 72 82 90 00 59 French Transport Card Pass'bus (used in Metz, France) http://www.tcrm-metz.fr/ 3B 8F 80 01 80 5A 08 03 04 00 02 00 24 E2 79 78 82 90 00 0C Paris Navigo card 14443 B' (Innovatron - Calypso) 3B 8F 80 01 80 66 B0 07 01 01 07 .. .. .. .. .. .. 90 00 .. Gemalto Santander Optelio TUI R7 with WG10 customized using Contactless interface 3B 8F 80 01 80 91 E1 31 80 65 B0 83 11 00 AC 83 00 90 00 B7 GemCombiXpresso R4 72K (contactless interface) 3B 8F 80 01 80 91 E1 31 80 65 B0 83 11 11 AC 83 00 90 00 A6 GEMALTO WM GX4 72 DHS TSA (contactless interface) 3B 8F 80 01 80 91 E1 31 80 65 B0 83 11 17 E5 83 00 90 00 E9 IDPrime PIV Card v2.0 AES SCP03 (eID) http://www.gemalto.com/products/piv_card/product_brief.html 3B 8F 80 01 80 91 E1 31 80 65 B0 85 02 00 CF 83 00 90 00 C1 Gemalto IDCore 3010 CC (JavaCard) http://www.gemalto.com/Products/top_javacard/index.html 3B 90 16 01 87 BIFIT USB-Token iBank2key 3B 90 95 80 1F C3 59 Dai Nippon Printing Co., DNP Standard-J T3.1 3B 91 94 80 1F 03 23 BA China black(COS) SIM, does not support clock stop 3B 94 18 81 B1 80 7D 1F 03 19 C8 00 50 DC GoldKey Security PIV Token 3B 95 .. 40 FF 62 01 01 .. .. Schlumberger Cryptoflex e-gate 3B 95 15 40 .. 68 01 02 .. .. Schlumberger CryptoFlex 8k v2 3B 95 15 40 FF 63 01 01 00 00 Cryptoflex 16K 3B 95 18 40 FF 62 01 02 01 04 Schlumberger Cryptoflex 32K e-gate 3B 95 18 40 FF 62 04 01 01 05 Schlumberger CryptoFlex 32Ko V1 3B 95 18 40 FF 64 02 01 01 02 Schlumberger CryptoFlex 32Ko 3B 95 94 40 FF 63 01 01 02 01 Schlumberger Cryptoflex 16Ko 3B 95 95 40 FF AE 01 01 02 03 Axalto Cyberflex Access 64K v2a SM 2.3 3B 95 95 40 FF AE 01 03 00 00 Axalto - Cyberflex 64K Gemalto TOP IM FIPS CY2 (product code HWP115291A) 3B 95 95 40 FF D0 00 1A 01 01 Cyberflex Access 64k (v3) 3B 95 95 40 FF D0 00 31 01 01 Cyberflex Access E-gate V3 3B 95 95 40 FF D0 00 52 01 02 CHIFA (Child Healthcare Information For All?) (HealthCare) 3B 95 95 40 FF D0 00 54 01 3. Portuguese identity card http://www.cartaodecidadao.pt 3B 95 96 40 F0 01 13 0A 0A 1D xcrypt (Pay TV) 3B 95 96 40 F0 0F 10 0A 09 6A Zain Usim Card (Telecommunication) www.qariya.com 3B 96 18 80 01 80 51 00 61 10 30 9F 00 61 10 30 9E Atmel/Athena T0 PC/SC Compliance Test Card No. 1 (warm reset) 3B 97 11 C0 FF B1 FE 35 1F 83 A5 05 01 01 02 A3 01 5F digital chronotachygraphe card: conducteur/driver, entreprise, contrôleur/controler et atelier/workshop, 2006-2010 manufactured by Imprimerie Nationale, distributed by Chronoservices 3B 97 13 C0 FF B1 FE 35 1F 83 A5 05 01 01 02 A3 01 5D digital chronotachygraphe card: conducteur/driver, entreprise, contrôleur/controler et atelier/workshop, 2005-2006 manufactured by Imprimerie Nationale, distributed by Chronoservices 3B 97 95 C0 2A 31 FE 35 D0 00 48 01 05 A3 11 3C digital chronotachygraphe card: conducteur/driver, entreprise, contrôleur/controler et atelier/workshop, 2010-2015 manufactured by Imprimerie Nationale, distributed by Chronoservices 3B 98 13 40 0A A5 03 01 01 01 AD 13 11 Belgium Electronic ID card 3B 98 94 00 93 91 14 01 0A 06 06 06 Orange Spain 64k Sim card 3B 98 94 40 0A A5 03 01 01 01 AD 13 10 Belgium Electronic ID card 3B 98 94 80 1F C2 32 2E 31 30 31 14 01 40 28 CMCC operator UICC (Telecommunication) 3B 98 95 00 93 94 04 04 03 03 03 03 T-Mobile MVNO SIM card 3B 98 95 40 FF D0 00 48 01 01 AD 13 21 Belgian Eid virtual test card https://env.dev.eid.belgium.be/prepcard.php 3B 98 96 00 80 31 C0 72 F7 41 81 07 Activ Rutoken Magistra 3B 98 96 00 93 94 03 07 03 04 04 04 SIM card GSM SIM of VIP CRoatian mobile company 3B 98 96 00 93 94 03 08 05 03 03 03 SIMple Mobile SIM Card http://www.simplemobile.com 3B 98 96 00 93 94 03 09 03 02 02 02 MySims2Go GSM SIM Card (Telecommunication) http://www.mysims2go.com 3B 98 96 00 93 94 04 02 04 05 05 05 Roshan (Afgan Wireless ) SIM (Telecommunication) 3B 99 18 00 11 88 22 33 44 55 66 77 60 sysmocom sysmoSIM-GR1 3B 99 94 00 91 08 91 06 00 01 06 06 00 GSM-SIM Orange-UK (1800) 3B 99 94 00 91 99 93 12 00 01 16 02 00 ORGA test systems - GSM Phase 2+ Test SIM 3B 9A 94 00 91 01 00 17 00 01 23 10 00 96 GSM-SIM Victorvox D1 (900MHz) 3B 9A 94 00 91 01 00 17 00 01 23 11 00 96 GSM-SIM Card T-D1 (900MHz) 3B 9A 94 00 91 01 00 17 00 01 26 06 00 96 T D1 GSM card 3B 9A 94 00 92 02 75 93 11 00 01 02 02 .. SuperSIM (X-sim) 3B 9A 96 00 92 01 36 93 17 00 02 04 03 00 GSM-SIM EMT "Simpel" (prepaid, Estonia) https://www.emt.ee/web/simpel 3B 9A 96 00 92 01 48 93 17 00 02 12 04 00 SIM Card Carrefour Mobile (Belgium) 3B 9A 96 00 92 01 66 93 17 00 02 12 04 00 GSM SIM Bite.lv prepaid "Toxic"; 2008 3B 9A 96 00 92 03 49 93 16 00 01 21 01 00 GSM-SIM card of the Austrian provider Yesss! http://www.yesss.at 3B 9A 96 40 1E 41 50 54 43 40 29 50 77 85 01 Java card Version 2.2.2 S3FS9FX series Java card (eID) 3B 9A 96 C0 10 31 FE 5D 00 64 05 7B 01 02 31 80 90 00 76 German driver card for the digital tachographs (mandatory for trucks above 3.5 tons) runnig STARCOS 3.4 and prouced by Giesecke & Devrient GmbH http://www.gi-de.com/deu/de/products_and_solutions/products/tachograph_cards/Fahrtenschreiberkarten-5890.jsp 3B 9B 95 80 1F 43 80 31 A0 73 BE 21 00 53 34 50 01 19 True Move GSM UICC (Telecommunication) 3B 9B 95 80 1F 47 80 31 A0 73 BE 21 00 53 27 11 02 4C SIM TELE2 Sweden 3B 9B 95 80 1F 47 80 31 A0 73 BE 21 00 53 34 99 05 D0 GSM-SIM EMT "Diil", prepaid (Estonia) 3B 9C 13 11 81 64 72 65 61 6D 63 72 79 70 74 00 04 08 XPlusTV & INXCT Access Card-9 (FIRECrypt) 3B 9C 13 11 81 64 72 65 61 6D 63 72 79 70 74 90 05 99 FireCrypt, access card 9 (Pay TV) 3B 9C 94 00 68 86 8D 0A 86 98 02 56 C2 00 05 00 G3 & GSM & Blank SIM card: to be programmed for OpenBTS with pySim-prog (Telecommunication) 3B 9D 11 40 23 00 68 10 11 4D 69 6F 43 4F 53 00 90 00 MioCOS 1.0 3B 9D 13 81 31 60 37 80 31 C0 69 4D 54 43 4F 53 73 02 02 05 41 MTCOS (eID) http://www.masktech.com/Products/MTCOS-Professional/11/en 3B 9D 94 40 23 00 68 20 01 4D 69 6F 43 4F 53 00 90 00 Miotec smartcard running Miocos 2.0 on an Atmel AT90SC646 http://www.miotec.fi 3B 9D 95 80 1F C3 80 31 E0 52 4B 54 62 11 03 73 FE 21 1B 8F KT WiBro UICC (2.3 GHz mobile WiMAX in South Korea) 3B 9D 95 80 1F C3 80 31 E0 73 FE 21 1B 65 D0 00 57 02 62 30 Gemalto NFC enabled (acquired through the Simagine contest) 3B 9D 95 80 1F C3 80 63 AF 03 A0 73 1A 21 1B 83 0F 90 00 F4 Greece TIM GSM SIM 3B 9D 95 80 1F C3 80 73 1A 21 1B 63 AF 06 A6 83 0F 90 00 F7 Travelsim GSM SIM Card (Telecommunication) http://www.travelsim.com 3B 9D 95 80 1F C3 80 73 1A 21 1B 63 AF 07 A7 83 0F 90 00 F7 GemXplore 3G 3B 9D 95 80 1F C7 80 73 1A 21 1B 63 AF 06 A6 83 0F 90 00 F3 Orange UK GSM/UMTS SIM 3B 9D 95 80 1F C7 80 73 1A 21 1B 63 AF 09 A9 83 0F 90 00 F3 Estonian GSM operator TELE2 (WPKI eID support) 3B 9E 94 80 1F 42 80 31 00 73 BE 21 10 66 54 59 53 04 4C 25 CF MCI (Mobile Communication Company of Iran) SIM 3B 9E 94 80 1F C3 80 31 E0 73 FE 21 1B 66 D0 00 17 B4 00 00 A5 Vodafone Ireland SIM card 3B 9E 94 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 6C 02 5F 00 33 Vivo Brasil SIM Card 3B 9E 94 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 6C 06 34 00 5C SIM card SFR 250 128ko 3B 9E 94 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 7A 00 00 00 78 GaduAIR (Poland) - Subscriber Identity Module (SIM) 3B 9E 94 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6D E8 0C 00 8A Mobile TeleSystems (MTS) GSM SIM http://www.mts.ru/ 3B 9E 95 80 1F C3 80 31 A0 73 BE 21 13 67 29 02 01 04 04 CD 39 H3G (?) UMTS USIM card J+ SWIM WIB UMTS SIM Test card http://www.exceldata.es/microprocess/j%2Bswinwibusim.html 3B 9E 95 80 1F C3 80 31 E0 73 FE 21 1B 66 D0 00 29 B6 01 00 99 GSM SIM (Telecommunication) 3B 9E 95 80 1F C3 80 31 E0 73 FE 21 1B 66 D0 00 29 F4 01 00 DB Vodafone (UK) Pay As You Talk SIM 3B 9E 95 80 1F C3 80 31 E0 73 FE 21 1B 66 D0 00 49 00 00 00 4E UK O2 Unlimited Prepay GSM/UMTS USIM 3B 9E 95 80 1F C6 80 31 E0 73 FE 21 1B 66 D0 01 9F BD 10 00 31 H3G (Three UK) Prepaid USIM (Telecommunication) 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 07 00 1E 00 1A H3G (Ireland, UK) UMTS USIM card 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 26 1C 01 00 38 GSM-SIM Telefonica Movistar, contract (Spain) http://www.movistar.es/ 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 28 C4 00 00 EF H3G (Italy) UMTS USIM card 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 49 00 00 00 4A Rogers 3G SIM card 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 49 00 C0 00 4A Rogers SIM card 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 75 02 05 00 71 SIM card, provided by brasilian operator "claro" (Telecommunication) 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 7A 00 00 00 79 Simyo SIM Card, Spanish Mobile Company Hi SIM 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 81 C8 0D 00 47 ESEYE ES4520 Anynet MFF Embedded SIM 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6C 04 0D 00 67 3G Yoigo SIM Card from Spain 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6C 39 0D 00 5A Andrews & Arnold (A&A) 3G mobile data SIM - using the "Three" network in the UK (Telecommunication) http://www.aa.net.uk/telecoms-mobile-data.html 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6C C1 0D 00 A2 Three Hong Kong Prepaid SIM Card (Telecommunication) http://www.three.com.hk/website/appmanager/three/home?_nfpb=true&_pageLabel=P200470391219567710594&pageid=631001&lang=eng 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 99 29 10 00 A2 Simyo-Mobile Belgium GSM SIM card 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 99 7F 0F 00 EB sim card RUS Megafon Krasnodar (Telecommunication) 3B 9E 95 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 A1 14 11 00 A6 Globe (Telecommunication) 3B 9E 95 C0 0A 1F C6 80 31 E0 73 FE 21 1B 66 D0 01 83 0D 58 81 1E Mobile Paypass G199 NFC 3B 9E 96 00 80 31 C0 65 4D 47 00 00 00 72 F7 41 81 07 Russian Magistra (UTF8: Магистра) smart card (eID) http://www.smart-park.ru/index.php/products/smartcards.html 3B 9E 96 00 80 31 C0 65 4D 53 00 00 00 72 F7 41 81 07 Smart-key for bank-client of MDM Bank (RU) with faktura.ru service (Bank) 3B 9E 96 80 1F 47 80 31 A0 73 BE 21 13 66 86 88 02 10 1D 10 49 Maroc Telecom USIM 3B 9E 96 80 1F 83 80 31 E0 73 FE 21 12 66 55 57 4E 41 32 33 91 TDC mobile UICC (Telecommunication) 3B 9E 96 80 1F C3 80 31 E0 73 FE 21 1B 66 D0 01 6C 04 0D 00 60 toggle GSM SIM http://www.togglemobile.co.uk 3B 9E 96 80 1F C3 80 31 E0 73 FE 21 1B 66 D0 01 7B 98 0D 00 EB Lycamobile Pay As You Go SIM 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 28 24 01 00 0D United Mobile SIM 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 2B 2D 02 00 04 KTF SHOW GE-B1400 WCDMA USIM (Telecommunication) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 6C 0C 72 00 12 Orange Austria GSM/3G SIM: "Mobiles Internet" 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 00 6C 0D 7A 00 1B Vodafone UK GSM SIM Card (Telecommunication) http://www.vodafone.co.uk 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6C C1 0D 00 A1 3 (Italian telecommunication provider) 3g sim card 2FF format H3G Italy 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6F F9 0D 00 9A T-Mobile US SIM card (Telecommunication) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 77 49 0D 00 32 UK simcard - O2 unlimited prepay 3G (4DM) USIM (EXT) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 77 60 0E 00 18 Walmart Family Mobile (T-Mobile) West Coast (Telecommunication) T-Mobile US USIM "TM9190" v50.05 (Telecommunication) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 77 7B 0E 00 03 Bouygues Telecom SIM - 3G (Telecommunication) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 77 97 0D 00 SIM Free Mobile 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 77 97 0D 00 EC SIM Free Mobile 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 7A 49 0D 00 3F SUPER start package (Estonia, EMT, 4G) (Telecommunication) https://www.super.ee/en/ 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 7B 5C 0E 00 28 SIM card by German mobile phone provider E-Plus for Product "WhatsApp SIM" (Telecommunication) https://www.eplus.de/whatsapp 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 7B AF 0D 00 D8 Chunghwa Telecom SIM card (Telecommunication) http://www.cht.com.tw/en/personal/pops.html 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 85 C4 0F 00 4F T-Mobile USA (Telecommunication) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 8D 5F 10 00 C3 eUICC for Gemalto (Telecommunication) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 91 88 0E 00 16 Lenovo SIM card (Telecommunication) 3B 9E 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 A1 68 0F 00 C7 Free Mobile SIM card (Telecommunication) 3B 9E 96 80 3F C3 A0 80 31 E0 73 FE 21 1B 63 08 01 14 0F 90 00 D3 KT Olleh LTE Warp SA-L 1670 (Telecommunication) 3B 9F .. 80 1F C3 00 68 1. 44 05 01 46 49 53 45 31 C8 .. 90 00 .. Setec SetCOS 4.4.1 3B 9F 11 40 60 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 30 "La7 Cartapiù" for DVB-T decoders, IRDETO access 3B 9F 11 40 60 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 37 dahlia Tv Italian Provider 3B 9F 11 40 60 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 38 00 irdeto (Pay TV) 3B 9F 11 40 60 49 52 44 45 54 4F 20 41 43 53 20 56 36 2E 30 skylink, Pay TV http://www.skylink.cz T-Mobile Czech Republic, Irdeto Satellite TV encryption card 3B 9F 11 80 1F C3 80 31 E0 73 FE 21 1B 64 07 53 63 01 82 90 00 74 Cingular SIM 3B 9F 11 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 06 A6 83 0F 90 00 0D i-SmartSim GSM phone SIM-lock bypass card http://i-smartsim.com/component/portfolio/7-unlock-sim/7-universal-unlock-sim-f300gold 3B 9F 11 81 11 3D 10 FD 54 6B 7D 00 00 00 00 00 00 00 00 00 00 8C Electronic Identity (eID) 3B 9F 11 C0 0A 1F C7 80 31 E0 73 FE 21 1B 63 F1 00 AD 83 0F 90 00 59 GemXplore Generation 3G 3B 9F 13 81 31 FE 45 80 67 55 45 4B 41 45 12 61 31 80 73 B3 A1 80 1C UKiS 1.2.1 on YITAL chip 3B 9F 13 81 31 FE 45 80 67 55 45 4B 41 45 12 64 31 80 73 B3 A1 80 19 UKiS 1.2.1 on HNEC chip 3B 9F 13 81 31 FE 45 80 67 55 45 4B 41 45 12 65 31 80 73 B3 A1 80 18 UKiS 1.2.1 on SMIC chip 3B 9F 13 81 B1 80 37 1F 03 80 31 F8 69 4D 54 43 4F 53 70 02 01 02 81 07 86 Swiss Health Insurance Card 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 03 83 95 00 80 55 Nagravision Betacrypt 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 03 84 55 6D FF 80 Nagravision Betacrypt 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 03 84 55 FF 80 6D TV smart card Sky Germany BEtacrypt 1702 http://providers.wikidot.com/sky-deutschland 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 20 56 34 2E 31 9D Foxtel paytv decoder in Australia acs 4.1 Irdeto2 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 30 9D Irdeto ACS 5.0 One (Pay TV) 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 33 9E red dragoncard chid 0604- Austar provider (pay tv) 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 34 99 Nova Greece package on satellite 13E Hotbird 3B 9F 21 0E 49 52 44 45 54 4F 20 41 43 53 20 56 35 2E 37 9A irdeto2 www.digiturk.com.tr (Pay TV) 3B 9F 94 40 1E 00 67 .. 43 46 49 53 45 10 52 66 FF 81 .. .. SLE66CX160S running SETCOS 4.3.1 Revision A 3B 9F 94 40 1E 00 67 11 43 46 49 53 45 10 52 66 FF 81 90 00 Setec / FINEID SETEC Instant EID 3B 9F 94 40 1E 00 67 16 43 46 49 53 45 10 52 66 FF 81 90 00 RSA SecurID 3100 or Utimaco Safeware Smartcard SetCOS 4.3.1 Revision Unknown 3B 9F 94 80 1F C3 00 68 10 44 05 01 46 49 53 45 31 C8 07 90 00 18 SetCOS 4.3.0 32K RSA Instant EID IP2 SETEC SetCard 32K PKI Evaluated SetCOS 4.4.1a2 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 11 63 07 52 51 83 07 90 00 CC sim card RUS Beeline Krasnodar (Telecommunication) 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 11 63 40 72 62 83 07 90 00 98 sim card RUS Beeline Krasnodar (Telecommunication) 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 11 63 40 82 92 83 07 90 00 98 PrixTel (Telecommunication) 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 13 57 12 29 11 02 01 00 00 C3 Sysmocom USIM-GR1 (Telecommunication) http://www.sysmocom.de/products/programmable-sysmousim-gr1-sim-card 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 13 57 49 05 0C 86 98 60 18 CC China Unicom USIM 128K 6131H 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 13 57 86 85 06 86 98 42 18 AB 4G LTE blank USIM Green Card (Telecommunication) http://grcard.en.alibaba.com/product/60076835567-209365843/4G_LTE_blank_usim_card_for_4G_network.html 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 1B 57 3F 86 60 83 02 00 00 BA GSM-SIM Beeline RU (Telecommunication) http://beeline.ru 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 1B 64 06 81 01 00 82 90 00 45 Mobicarte Orange 3B 9F 94 80 1F C7 80 31 E0 73 FE 21 1B 64 07 56 42 00 82 90 00 D0 SIM mobi orange 3B 9F 95 80 1F 03 80 31 A0 73 B6 A1 00 67 CF 97 F9 E0 63 68 99 57 Telestial OneRate International SIM card (Telecommunication) http://www.amazon.com/gp/product/B004GV13VY/ref=oh_aui_detailpage_o02_s00?ie=UTF8&psc=1 3B 9F 95 80 1F 43 80 31 E0 73 36 21 13 57 4A 33 0E 09 31 41 00 A9 GSM-SIM Elisa (Estonia, WPKI eID support) 3B 9F 95 80 1F 43 80 31 E0 73 36 21 13 57 4A 33 0E 0C 31 41 00 AC Vodafone SIM (mobile phone) 3B 9F 95 80 1F 43 80 31 E0 73 36 21 13 57 4A 33 0E 10 31 41 00 B0 SIM card O2 (UK, Pay-As-You-Go) Tesco Mobile (UK) SIM 3B 9F 95 80 1F 43 80 31 E0 73 F6 21 13 57 4A 43 05 21 31 41 00 3A GSM SIM AT&T US 3B 9F 95 80 1F 47 80 31 E0 73 36 21 13 57 4A 33 0E 10 31 41 00 B4 Sonera Easy (Telecommunication) http://www.sonera.fi/ GSM SIM MEDIONmobile (MVNO) Germany - from 2011 3B 9F 95 80 1F 47 80 31 E0 73 36 21 13 57 4A 33 0E 11 31 41 00 B5 Telus 3G SIM Card 3B 9F 95 80 1F 47 80 31 E0 73 FE 21 13 57 4A 33 05 2C 32 34 00 3D Subscription SIM card issued by TELE2, Lithuania (Telecommunication) 3B 9F 95 80 1F C3 80 31 A0 73 BE 21 13 67 47 01 03 01 02 00 00 99 T-Mobile (UK) SIM Fresh Mobile (UK) SIM 3B 9F 95 80 1F C3 80 31 A0 73 BE 21 13 67 47 01 05 01 04 00 00 99 T-Mobile Nederlands http://www.tmobile.nl 3B 9F 95 80 1F C3 80 31 A0 73 BE 21 13 67 D0 02 03 09 01 00 00 06 GSM, T-Mobile (Germany) 3B 9F 95 80 1F C3 80 31 A0 73 BE 21 13 67 D0 02 03 19 01 00 00 16 GSM SIM card from congstar (a no-frills service provider of Deutsche Telekom) 3B 9F 95 80 1F C3 80 31 A0 73 BE 21 13 67 D0 02 03 31 05 00 00 3A T-MOBILE CZ GSM card 3B 9F 95 80 1F C3 80 31 E0 73 FE 21 1B 57 3F 86 60 46 CD 00 01 B4 China Unicom USIM 128K 1295E 3B 9F 95 80 1F C3 80 31 E0 73 FE 21 1B 63 E2 09 A9 83 0F 90 00 8D GSM-SIM EMT (Estonia, WPKI eID support) 3B 9F 95 80 1F C3 80 31 E0 73 FE 21 1B 63 E2 0A D2 83 0F 90 00 F5 GSM, Vodafone (Germany) 3B 9F 95 80 1F C3 80 31 E0 73 FE 21 1B 64 06 90 61 00 82 90 00 31 3G SIM card from AT&T USA 3B 9F 95 80 1F C3 80 31 E0 73 FE 21 1B 64 06 90 62 00 82 90 00 32 AT&T GoPhone SIM Card 3B 9F 95 80 1F C3 80 31 E0 73 FE 21 1B 64 9B 4D 01 11 82 90 00 00 Singular (now AT&T) 3G GSM SIM Card 3B 9F 95 80 1F C3 80 31 E0 73 FE 21 1B B3 E2 01 74 83 0F 90 00 88 Gemplus GemXplore 3G USIM 3B 9F 95 80 1F C7 80 31 A0 73 BE 21 13 67 D0 02 04 09 01 00 00 05 T-Mobile SIM card issued in Germany 2012 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 12 29 11 02 01 00 00 C2 sysmocom sysmoUSIM-GR1 http://sysmocom.de/ 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 05 2C 32 34 00 BD SoftBank (Black UICC) (Telecommunication) 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 05 2E 32 34 00 SIM card 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 05 2F 32 34 00 BE T-Mobile (US) USIM 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 05 30 32 34 00 A1 H2O Wireless GSM UICC (Telecommunication) http://www.h2owirelessnow.com 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 0E 07 32 30 00 99 Bell Canada 3G SIM 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 0E 19 32 33 00 84 WIND Mobile SIM Card 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 0E 1A 32 36 00 82 TELUS 3G SIM Card 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 63 55 10 AA 83 07 90 00 24 2degrees NFC (Telecommunication) http://www.2degreesmobile.co.nz/home 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 13 67 94 03 11 00 00 02 03 5C AT&T (US) GSM SIM 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 03 94 83 0F 90 00 BE Telenet N.V. Walk & Talk SIM Card Belgium 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 04 A5 83 0F 90 00 88 Cingular "64Ksmartchip" GSM SIM Telia GSM/3G (Swedish operator) 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 06 A6 83 0F 90 00 89 TracFone (US) Net10 GSM SIM card Simyo (Germany) GSM SIM card H3G (Italy) UMTS USIM card 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 07 A7 83 0F 90 00 89 SIM NRJ Mobile H3G (UK) UMTS USIM card Orange UK GSM/UMTS SIM 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 08 A8 83 0F 90 00 89 H3G (Sweden) UMTS USIM card 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 09 A9 83 0F 90 00 89 GSM SIM Vodafone NL postpaid 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 64 07 52 93 01 82 90 00 05 AT&T nano SIM (Telecommunication) 3B 9F 95 80 1F C7 80 31 E0 73 FE 21 1B 65 9F 01 09 02 04 81 05 C4 2degrees mobile SIM card http://www.2degreesmobile.co.nz/ 3B 9F 95 81 31 FE 9F 00 65 46 53 05 .. 06 71 DF 00 00 00 .. .. .. .. Feitian PKI http://www.ftsafe.com/products/PKI-Card.html FTCOS/PK-01C 3B 9F 95 81 31 FE 9F 00 65 46 53 05 30 06 71 DF 00 00 00 80 6A 82 5E Feitian PKI http://www.ftsafe.com/products/PKI-Card.html 3B 9F 95 81 31 FE 9F 00 66 46 53 05 01 00 11 71 DF 00 00 .. .. .. .. Feitian ePass2003 token 3B 9F 95 81 31 FE 9F 00 66 46 53 05 20 03 25 71 DF 00 00 00 00 00 05 Feitian ePass2003 token 3B 9F 95 81 31 FE 9F 00 66 46 53 05 20 03 25 71 DF 00 00 03 90 00 96 Feitian ePass2003 token (PKI) 3B 9F 95 81 31 FE 9F 00 66 46 53 05 23 00 25 71 C3 9F 00 00 00 00 86 Feitian ePass2003 token 3B 9F 95 C0 0A 1F 07 80 31 E0 73 FE 21 1B 63 F1 00 AD 83 0F 90 00 1D EMT WPKI USIM (2014, Estonia, JavaCard) (Telecommunication) 3B 9F 95 C0 0A 1F C7 80 31 E0 73 FE 21 1B 63 F1 00 AD 83 0F 90 00 DD Telenor SIM card (Norway) 3B 9F 96 40 0A 80 31 E0 6B 04 20 05 02 58 55 55 55 55 55 55 BuyPass identification card. It can also possibly be used to hold e-currency. 3B 9F 96 40 0A 80 31 E0 6B 04 21 05 02 61 55 55 55 55 55 55 altinn - Buypass Electronic ID card for login to the altinn.no service 3B 9F 96 40 0A 80 31 E0 6B 04 21 05 02 6C 55 55 55 55 55 55 Banca Intesa (Bank) http://www.bancaintesa.rs/code/navigate.aspx?Id=677 3B 9F 96 40 0A 80 31 E0 6B 04 31 05 02 A8 55 55 55 55 55 55 Norsk Tipping tippekort (eID) https://www.norsk-tipping.no/bli-nettspiller 3B 9F 96 80 1F 43 80 31 E0 73 36 21 13 57 4A 33 0E 09 31 41 00 AA Elisa UICC (Telecommunication) 3B 9F 96 80 1F 43 80 31 E0 73 36 21 13 57 4A 33 0E 0C 31 41 00 AF GSM, Vodafone (Germany) 3B 9F 96 80 1F 47 80 31 E0 73 36 21 13 57 4A 33 0E 0C 31 41 00 AB NATEL SIM-Card swisscom Vodafone Germany Micro-SIM from 2010 3B 9F 96 80 1F C3 00 68 10 44 05 01 46 49 53 45 31 C8 07 90 00 1A SETEC SetCard 32K PKI Evaluated SetCOS 4.4.1 3B 9F 96 80 1F C3 80 31 E0 73 FE 21 1B B3 E2 02 7E 83 0F 90 00 82 Vodafone SIM Card (D2, 1800Mhz, Germany, Twincard, possibly others too?), manufactured by Gemplus (See stamp on the chip) MobileOne (Singaporean 3G/GSM operator) SIM card "II(3G-64) M1 3G " 3B 9F 96 80 1F C6 80 31 E0 73 FE 21 1B 66 D0 02 06 E2 0F 18 01 F0 Telekom Sim card (Telecommunication) 3B 9F 96 80 1F C7 80 31 A0 73 BE 21 13 67 43 20 07 18 00 00 01 A5 sysmoUSIM-SJS1 (Telecommunication) http://www.sysmocom.de/products/sysmousim-sjs1-sim-usim 3B 9F 96 80 1F C7 80 31 E0 73 F6 21 13 67 4D 45 16 00 43 01 00 8C SIM From Tuenti Móvil Spain (Telecommunication) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 .. 63 .. .. .. 83 .. 90 00 .. TIM (Italy) 128KB GSM SIM H3G (Italy) UMTS USIM Vodafone (UK) SIM 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 05 31 33 30 00 A6 AT&T eUICC (Telecommunication) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 57 4A 33 0E 20 33 31 00 BD T-Mobile US USIM card (Telecommunication) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 91 18 02 04 06 06 06 51 USIM (3G PF) Orange 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 93 21 01 07 03 01 03 6D GSM SIM blau (MVNO) Germany from 2013 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 93 30 01 03 03 01 04 7F T-Mobile US SIM card (Telecommunication) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 93 30 01 03 04 03 02 7C Comprion test U(SIM): model 128K/J LTE Test (U)SIM - Mini-UICC, product number Prod. No.: 10432006 (Telecommunication) http://www.comprion.com/en/products/test__u_sims/3g_test_usim_cards 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 94 03 07 03 04 04 04 4F GSM-SIM EMT (3G modem 2011, Estonia) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 94 04 01 07 02 02 02 4C Orange Mobicarte (France) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 94 04 04 03 05 05 05 4A Claro operator SIM 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 94 16 02 07 05 02 02 5A CSL Mobile / PCCW SIM Card (Telecommunication) http://www.hkcsl.com/ 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 98 01 01 04 02 03 02 47 ReadySIM / T-Mobile USA USIM (2013) (Telecommunication) http://www.readysim.com/ 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 98 02 01 01 05 01 05 43 CMHK card. China Mobile Hong Kong. (Telecommunication) https://www.hk.chinamobile.com 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 13 67 98 05 02 12 03 01 03 54 Vodafone UK PAYG Data SIM (Telecommunication) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 63 00 57 00 83 81 90 00 11 3 (3g microUSIM) Italian subsidiary H3G 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 63 40 41 91 83 07 90 00 50 giffgaff UK 3G SIM netzclub sponsored mobile o2 Loop GSM SIM Germany (PREPAID) from 2013 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 63 E2 03 94 83 0F 90 00 BD USIM (3G DF) Orange 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 64 06 97 82 00 82 90 00 D2 MTN IRANCELL In Iran Sim Card (Telecommunication) http://www.irancell.ir/Portal/home/?21744/About%20Irancell 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 64 07 14 81 00 82 90 00 53 SFR operator 3G 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 64 07 54 61 00 82 90 00 F3 Aero2 (Poland) - A 900Mhz HSPA+ and 2500Mhz LTE wholesale telecom operator USIM providing toll-free access to the Internet ("Bezpłatny Dostęp do Internetu" service) http://aero2.pl/bdi.html 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 64 07 59 51 00 82 90 00 CE 00 00 00 00 00 00 00 00 00 00 Oberthur USIM card (Telecommunication) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 64 40 41 12 00 82 90 00 D2 Free Mobile SIM Card B&YOU SIM card 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 64 40 45 11 00 82 90 00 D5 Orange Spain GSM SIM Card (Telecommunication) http://www.orange.es 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 64 40 78 83 00 82 90 00 7A Free Mobile SIM (Telecommunication) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 65 24 01 09 01 00 81 05 7B Lycamobile (UK) GSM SIM card 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 65 26 01 09 00 07 81 05 7F EMT WPKI 2015 (ECC) subscription (Telecommunication) https://www.emt.ee/en/pakkumised/mobiil-id 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6B 82 0E 18 01 FE Telekom Deutschland GmbH - Xtra Data Karte (3G SIM) 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B 66 D0 01 6B 82 0E 38 05 DA GTS Czech MVNE SIM for T-Mobile (Telecommunication) http://www.gts.cz/cz-en/solutions/types/wholesale/mvne 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B B3 E2 03 94 83 0F 90 00 6D GemXplore 3G v2.2 3B 9F 96 80 1F C7 80 31 E0 73 FE 21 1B B3 E2 04 A5 83 0F 90 00 5B Tre Italia Gemplus (Telecommunication) 3B 9F 96 80 3F C3 A0 80 31 E0 73 F6 21 13 57 4A 4D 0E 1D 31 30 00 71 Telenor SIM card (Norway) 3B 9F 96 81 31 FE 45 80 67 55 45 4B 41 45 12 12 31 80 73 B3 A1 80 EA AKiS v1.2 on nxp chip 3B 9F 96 81 31 FE 45 80 67 55 45 4B 41 45 12 52 31 80 73 B3 A1 80 AA AKiS v1.2.1 on infineon chip 3B 9F 96 81 31 FE 45 80 67 55 45 4B 41 45 12 53 31 80 73 B3 A1 80 AB AKiS v1.2.1 on nxp chip 3B 9F 96 81 31 FE 45 80 67 55 45 4B 41 45 12 92 31 80 73 B3 A1 80 6A AKiS v1.2.2 on infineon chip 3B 9F 96 81 31 FE 45 80 67 55 45 4B 41 45 12 93 31 80 73 B3 A1 80 6B AKiS v1.3 on infineon chip 3B 9F 96 81 B1 FE 45 1F 07 00 64 05 1E B2 00 31 B0 73 96 21 DB 05 90 00 5C SignTrust (www.signtrust.de) Infinion SLE66CX680PE with Starcos 3.2 http://www.deutschepost.de/dpag?xmlFile=link1015459_49595 3B 9F 96 C0 0A 1F C3 80 31 E0 73 FE 21 1B 63 F1 00 AD 83 0F 90 00 DA SIM SFR Pro (French Mobile Operator) 3B 9F 96 C0 0A 1F C7 80 31 E0 73 FE 21 1B 63 F1 00 AD 83 0F 90 00 DE H3G (Italy) UMTS USIM card 3B 9F 96 C0 0A 1F C7 80 31 E0 73 FE 21 1B 65 D0 01 10 09 22 81 00 F3 Verizon 4G LTE SIM Card (Telecommunication) http://www.verizonwireless.com/support/information/4gsim.html 3B 9F 96 C0 0A 1F C7 80 31 E0 73 FE 21 1B 65 D0 01 8E 0E 32 81 00 7A Rogers 3G SIM card 3B 9F 96 C0 0A 3F C6 A0 80 31 E0 73 FE 21 1B 65 D0 01 74 0E EB 81 0F D7 Verizon "4G LTE" USIM (Telecommunication) 3B 9F 96 C0 0A 3F C7 A0 80 31 E0 73 FE 21 1B 65 D0 01 74 0E 8D 81 0F B0 USIM 3B 9F 97 C0 0A 1F C7 80 31 E0 73 FE 21 1B 65 D0 01 10 09 22 81 00 F2 "ultra fast card, max speed supported for telecom"? (transport) 3B 9F 97 C0 0A 3F C6 A0 80 31 E0 73 FE 21 1B 65 D0 01 74 0E EB 81 0F D6 Verizon 4G LTE Micro SIM (Telecommunication) 3B 9F 97 C0 FF 1F C7 80 31 E0 73 FE 21 1B 63 F1 00 AD 83 0F 90 00 2A Gemalto Speed Enhancement 97 (Telecommunication) 3B 9F D6 80 B1 A0 59 1F C7 53 4C 45 38 38 5F 50 53 4C 5F 56 30 2E 35 30 01 Infineon SLE88CFX4000P 3B A7 00 40 .. 80 65 A2 08 .. .. .. Gemplus GemSAFE Smart Card (8K) 3B A7 00 40 14 80 65 A2 14 01 01 37 Gemplus GPK4000sdo 3B A7 00 40 18 80 65 A2 08 01 01 52 Gemplus GPK8000 GemSAFE Smart Card (8K) 3B A7 00 40 18 80 65 A2 09 01 01 52 Gemplus GPK16000 3B A7 00 40 18 80 65 A2 09 01 02 52 Gemplus GPK16000 3B A7 00 40 18 80 65 A2 09 01 03 52 Gemplus GemSAFE std (GPK16000?) 3B A8 00 81 71 46 5D 00 54 43 4F 53 31 2E 32 00 65 Telesec TCOS 1.2 3B A8 00 81 71 46 5D 00 54 43 4F 53 31 2E 32 4B 2E CeloCom Card with TCOS 1.2 3B AA 00 40 14 47 47 32 47 54 35 53 34 38 30 GSM-SIM Libertel (900MHz) 3B AA 00 40 80 53 4F 80 53 45 03 04 11 AA A3 "open platform" ATMEGA "new Generation" http://www.masterixweb-italy.com/new/images/articoli/atmega.jpg 3B AB 00 81 31 40 45 80 31 C0 65 08 06 80 00 00 00 00 84 Reloadable Visa Cash card (Schlumberger), Bank of America 3B AC 00 40 2A 00 12 25 00 64 80 00 03 10 00 90 00 Sesam Vitale card CPS (Carte Profesionnel de Santé) 3B AC 00 40 2A 00 12 25 00 64 80 82 02 12 00 90 00 Sesam Vitale card CPS (Carte Profesionnel de Santé) 3B AD 00 40 FF 80 31 80 65 B0 05 01 01 5E 83 00 90 00 Dallas Semiconductor iButton JIB Gemplus GemXpresso 2.11PK 3B B0 11 00 81 31 90 73 F2 SamOS 2.7 3B B0 36 00 81 31 FE 5D 95 Betacrypt 2 (Comvenient GmbH) Conditional Access Smart Card (Pay TV) www.comvenient.com 3B B2 11 00 10 80 00 01 Atmel memory card AT88SC0104C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf Plug'n'Print 3B B2 11 00 10 80 00 02 Atmel memory card AT88SC0204C (Atmel memory card) http://www.atmel.com/dyn/resources/prod_documents/doc5211.pdf 3B B2 11 00 10 80 00 04 Atmel memory card AT88SC0404C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf 3B B2 11 00 10 80 00 08 Atmel memory card AT88SC0808C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf Smart VR Card - GD Burti 3B B2 11 00 10 80 00 16 Atmel memory card AT88SC1616C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf Rexall (Canada) - Blood Pressure Check card http://www.rexall.ca/services/blood-pressure-tracking 3B B3 11 00 00 00 00 32 Atmel memory card AT88SC3216C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf 3B B3 11 00 00 00 00 64 Atmel memory card AT88SC6416C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf 3B B3 11 00 00 00 01 28 Atmel memory card AT88SC12816C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf 3B B3 11 00 00 00 02 56 Atmel memory card AT88SC25616C http://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf 3B B7 11 00 81 31 90 43 A5 .. .. .. .. .. .. .. Siemens CardOS/M V1.4 (SLE44C80S) 3B B7 11 00 81 31 90 53 B5 .. .. .. .. .. .. .. CardOS EM/V1.4 (SLE44CR80S) 3B B7 18 00 81 31 FE 65 53 50 4B 32 34 90 00 5A Giesecke & Devrient Starcos 2.4 3B B7 18 00 C0 3E 31 FE 65 53 50 4B 32 34 90 00 25 G&D STARCOS SPK 2.4 3B B7 94 00 81 31 FE 55 53 50 4B 32 32 90 00 E0 Dresdner Bank (a German Bank) Key-Card for InternetBanking 3B B7 94 00 81 31 FE 65 53 50 4B 32 32 90 00 D0 Giesecke & Devrient STARCOS SPK2.2 3B B7 94 00 81 31 FE 65 53 50 4B 32 33 90 00 D1 Giesecke & Devrient Starcos 2.3 Deutsche Bank WebSign (RSA-Card) G&D StarSign Token 3B B8 13 00 81 31 20 5D 00 57 69 6E 43 61 72 64 02 SmartCard for Windows 1.1 3B B8 13 00 81 31 FA 52 43 48 54 4D 4F 49 43 41 A5 citizen digital certificate (PKI) http://moica.nat.gov.tw/ 3B B9 18 00 81 31 FE 9E 80 73 FF 61 40 83 00 00 00 DF Serbian Identity Card This is the new Serbian biometric identity card (every adult cityzen must have). The chip contains owners picture, name, date and place of birth, current address, unique ID number and fingerprint. 3B B9 94 00 40 14 47 47 33 4E 48 38 36 34 30 GSM-SIM card of the Austrian mobile phone provider One http://www.one.at Proximus SIM - Belgium (SetCOS?) o2 GSM-SIM card Germany 2003 3B BA 11 00 81 31 FE 4D 55 45 4B 41 45 20 56 31 2E 30 AE AKİS v1.0 on infineon chip 3B BA 13 00 81 31 86 5D 00 64 05 0A 02 01 31 80 90 00 8B Telesec TCOS 2 (SLE44) TCOS 2.0 (on CR80S) Cryptokarte with RSA-Controller, T=1 Protocol 3B BA 14 00 81 31 86 5D 00 64 05 14 02 02 31 80 90 00 91 TCOS 2.0 (on CX160S) Telesec TCOS 2 (SLE66) 3B BA 94 00 40 14 GG3RS732S0 ? 3B BA 94 00 40 14 47 47 33 52 53 37 31 36 53 20 GSM SIM Elisa Estonia 3B BA 94 00 40 14 47 47 33 52 53 37 31 36 53 30 GSM-SIM Viag Interkom E2 Loop (1800MHz) GSM-SIM card of the Austrian A1 http://www.a1.net/privat/home GSM SIM Radiolinja Estonia; 2005 3B BA 95 00 10 80 43 4C 5F 53 41 4D 00 01 38 11 CLSAM (Transport) http://www.planeta.inf.br 3B BA 95 00 81 B1 86 5D 1F 43 00 64 04 5C 02 03 31 80 90 00 84 T-Mobile Corporate ID Card 3B BA 96 00 81 31 86 5D 00 64 05 60 02 03 31 80 90 00 66 Telesec TCOS 2 (SLE66P) TCOS 2.0 (on CX320P) TeleSec Netkey Card 3B BA 96 00 81 31 86 5D 00 64 05 60 02 03 31 80 90 00 66 70 01 04 05 30 C9 TeleSec Netkey E4 Card 3B BA 96 00 81 31 86 5D 00 64 05 7B 02 03 31 80 90 00 7D TeleSec NetKey Card Deutsche Post card (tcos) 3B BB 18 00 C0 10 31 FE 45 80 67 04 12 B0 03 03 00 00 81 01 38 Giesecke & Devrient Star Sign Card, STARCOS 3.0 DI, 72 KB, RSA2048 bit Giesecke & Devrient Smartc@fe Expert 32K v2.0 3B BB 18 00 C0 10 31 FE 45 80 67 04 12 B0 03 03 00 00 81 05 3C Philips Smart MX Szczecin University of Technology in Poland student identity card (Elektroniczna Legitymacja Studencka = student identity card) CSOB bank, Czech Republic CATCert (Agència Catalana de Certificació) catalan government workers identity card 3B BB 18 00 C0 3E 31 FE 65 47 26 44 20 54 53 4D 20 31 2E 30 B7 Italian Tachograph Driver Card 3B BC 18 00 81 31 20 75 5A 43 33 2E 31 32 20 52 45 56 20 41 46 ZeitControl BasicCard Enhanced 3.7 http://www.basiccard.com/ 3B BC 18 00 81 31 20 75 5A 43 33 2E 31 34 20 52 45 56 20 44 45 ZeitControl BasicCard Enhanced 3.14 Rev D http://www.basiccard.com/ 3B BC 94 00 40 14 47 47 33 48 33 35 58 53 32 30 30 30 GSM-SIM Era-PL T-Mobile GSM SIM Card 3B BC 94 00 40 14 47 47 33 48 33 35 58 56 32 30 30 30 GSM SIM CARD 32K, Vodafone 3B BC 94 00 40 14 47 47 33 49 35 39 42 43 32 30 30 30 GSM SIM Vodafona NL prepaid 3B BC 94 00 40 14 47 47 33 49 35 43 41 43 31 30 30 30 Siemens SIM card 3B BC 94 00 40 14 47 47 33 49 37 31 39 43 32 30 30 20 Telenor SIM card (Norway) 3B BC 94 00 40 14 47 47 33 49 42 31 42 43 31 30 30 20 Telenor SIM (Telecommunication) 3B BC 94 00 40 14 47 47 33 53 30 35 31 53 31 30 31 30 GSM SIM (Tele2, Estonia) GSM SIM Elisa Estonia; 2007 GSM SIM from 'fonic' Germany 3B BD 18 00 81 31 FE 45 80 51 02 67 04 14 B1 01 01 02 00 81 05 3D Austrian "e-Card" (=Health Card) special Version of Starcos 3.1 3B BD 18 00 81 31 FE 45 80 51 02 67 05 18 B1 02 02 02 01 81 05 31 Austrian health insurance card "e-card" 3B BD 18 00 81 31 FE 45 80 51 03 67 04 14 B1 01 01 02 00 81 05 3C Austrian Health insurance card "eCard" (HealthCare) http://www.chipkarte.at 3B BE 11 00 00 41 01 10 20 38 00 00 00 00 00 00 00 00 00 ACOS2 3B BE 11 00 00 41 01 38 00 00 00 00 00 00 00 00 01 90 00 ACS (Advanced Card System) ACOS-1 3B BE 11 00 00 41 01 38 00 00 00 00 00 00 00 00 02 90 00 ACS (Advanced Card System) ACOS-1 8K 3B BE 11 00 00 41 01 38 00 00 03 00 00 00 00 00 01 90 00 ACS ACOS3-32 (Telecommunication) http://www.acos3.com/ 3B BE 11 00 00 41 01 38 00 00 04 00 62 75 62 7A 01 90 00 Advanced Card Systems ACOS3 (24k) V1.7 http://www.acs.com.hk/index.php?pid=product&prod_sections=0&id=ACOS3 3B BE 11 00 00 41 01 38 00 00 05 00 00 00 00 00 02 90 00 ACS (Advanced Card System) ACOS2 3B BE 11 00 00 41 01 38 01 00 03 00 00 00 00 00 02 90 00 ACOS2 test card from ACS reading off a ACR38U 3B BE 11 00 00 41 01 38 03 00 04 00 00 00 00 00 01 90 00 ACOS 3 from ACS (Other) 3B BE 11 00 00 41 01 38 04 00 14 00 00 00 00 00 01 90 00 Dekart Smartcard Logon (eID) http://www.smartcardfocus.com/shop/ilp/se~81/dekart-smartcard-logon/p/index.shtml 3B BE 11 00 00 41 01 38 25 00 03 00 00 00 00 00 01 90 00 8 pin (eID) 3B BE 11 00 00 41 01 38 4D 80 0A 80 50 52 4F 56 00 90 00 ACS (Advanced Card System) ACOS-3 3B BE 18 00 00 41 05 .. 00 00 00 00 00 00 00 00 00 90 00 Advanced Card Systems (ACS) ACOS5 Cryptographic Smart Card 3B BE 18 00 00 41 05 10 00 00 00 00 00 00 00 00 00 90 00 ACS ACOS5 "ACOS5-32-G" dual card http://www.acs.com.hk/acos5.asp 3B BE 94 00 40 14 47 47 33 53 33 45 44 41 54 4C 36 30 31 30 SingTel hi! Prepaid GSM SIM UICC (Telecommunication) 3B BE 94 00 40 14 47 47 33 53 33 45 48 41 54 4C 39 31 30 00 Latvian GSM operator TELE2 3B BE 95 00 00 41 03 00 00 00 00 00 00 00 00 00 02 90 00 touchatag SAM card Spanish University of Murcia smart ID card - Old version with CajaMurcia Banking card integrated (Maestro card) (M.Mar OS) - Also used by many others spanish universities 3B BE 96 00 00 41 03 00 00 00 00 00 00 00 00 00 02 90 00 SAM inside the Tikitag reader from Alcatel-Lucent http://hackerati.com/post/57314994/rfid-on-the-cheap-hacking-tikitag 3B BE 96 00 00 41 05 20 00 00 00 00 00 00 00 00 00 90 00 CryptoMate64 USB Cryptographic token http://www.acs.com.hk/index.php?pid=product&prod_sections=0&id=CRYPTOMATE64 ACS ACOS5-64 http://www.acs.com.hk/en/products/17/acos5-64-cryptographic-smart-card/ 3B BE 96 00 80 1F C7 80 31 E0 73 FE 21 13 62 00 .. 83 81 90 00 .. Vodafone (Italy) 128 kB GSM SIM card TIM (Italy) 128 kB GSM SIM card 3B BF .. 00 81 31 FE 5D 00 64 04 0F 03 .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 on Philips P5CD036 3B BF .. 00 81 31 FE 5D 00 64 04 11 03 .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 on Philips P5CT072 3B BF .. 00 81 31 FE 5D 00 64 04 15 03 .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 on Philips P5CD072 3B BF .. 00 81 31 FE 5D 00 64 04 28 03 02 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 release 2 on Philips P5CD080 3B BF .. 00 81 31 FE 5D 00 64 05 6D 03 .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 on Infineon SLE 66CX642P 3B BF .. 00 81 31 FE 5D 00 64 05 89 03 .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 on Infineon SLE 66CLX641P 3B BF .. 00 81 31 FE 5D 00 64 05 8A 03 .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 on Infineon SLE 66CLX640P 3B BF .. 00 81 31 FE 5D 00 64 05 91 03 .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 on Infineon SLE 66CX680PE 3B BF 11 00 81 31 .. 45 45 50 41 00 00 00 00 .. .. .. .. 00 00 .. .. .. Austrian Quick E-purse http://www.quick.at/ 3B BF 11 00 81 31 FE 45 45 50 41 00 00 00 00 00 00 00 00 00 00 00 00 F1 a.sign premium signature card 3B BF 11 00 81 31 FE 45 4D 43 41 00 00 01 00 01 69 71 85 00 00 00 00 77 Austrian "easybank" branded Mastercard, issued 2007 3B BF 11 00 81 31 FE 45 4D 43 41 00 00 01 00 02 08 20 51 00 00 00 00 90 austrian combined card of a mastercard and ÖBB Vorteilscard (Austrian Federal Railways) http://www.oebb.at/pv/de/Servicebox/VORTEILScard/Bezahlen_mit_der_VORTEILScard/VORTEILScard_MasterCard.jsp 3B BF 11 00 81 31 FE 45 4D 43 41 00 00 01 00 02 55 91 33 00 00 00 00 1E Mastercard (Paylife Austria) 3B BF 11 00 C0 10 31 FE 44 53 4D 40 52 54 20 43 41 46 45 20 31 2E 31 43 C1 Giesecke&Devrient SmartCafe 1.1 3B BF 18 00 80 31 70 35 53 54 41 52 43 4F 53 20 53 32 31 20 43 90 00 9B Giesecke & Devrient STARCOS S2.1 3B BF 18 00 81 31 70 55 53 54 41 52 43 4F 53 20 53 32 31 20 43 90 00 FA Giesecke & Devrient STARCOS S2.1 3B BF 18 00 C0 20 31 70 52 53 54 41 52 43 4F 53 20 53 32 31 20 43 90 00 9C Giesecke & Devrient SPK 2.1 C 3B BF 94 00 81 31 FE 65 45 4C 55 20 41 75 73 74 72 69 61 20 31 2E 32 38 A-Trust: trust-sign (Old Version, ca. 2002) for Digital Signature etc. A-Trust: a-sign-premium (ca. 2004) "Bürgerkarte" ("Citizen-Card") for Identifikation, Digital Signature etc. ("should be" Starcos 2.3) 3B BF 94 00 81 31 FE 65 45 4C 55 20 41 75 73 74 72 69 61 20 31 2E 32 38 3B BF 96 00 81 31 FE 5D 00 64 .. .. .. .. 31 C0 73 F7 01 D0 00 90 00 .. TCOS 3.0 / NetKey 3.0 3B D0 A8 FF 81 F1 FB 24 00 1F C3 F4 Philips DESFire SAM 3B D2 18 00 81 31 FE 45 01 01 C1 Dutch License Plate Card (RDW) https://commons.wikimedia.org/wiki/File:Kentekencard_voorzijde_1_december_2013.jpg 3B D2 18 00 81 31 FE 58 C9 01 14 Atos CardOS5 (PKI) http://atos.net/NR/rdonlyres/17C7BDD0-225B-4A58-B9A4-438EA3F3238A/0/74743_20120830_160149_cardos_v5_0__datenblatt_en.pdf 3B D2 18 02 C1 0A 31 FE 58 C8 0D 51 Siemens Card CardOS M4.4 3B D5 18 00 81 31 3A 7D 80 73 C8 21 10 30 Aladdin eToken NG-Flash with 256MB of flash memory Aladdin eToken PRO (72KB) http://www.aladdin.com/etoken/devices/default.aspx 3B D5 18 00 81 31 FE 7D 80 73 C8 21 10 F4 Bank of Lithuania Identification card Aladdin PRO/Java card http://www.aladdin-rd.ru/catalog/etoken/java/ 3B D5 18 FF 80 91 FE 1F C3 80 73 C8 21 13 08 Athena IDProtect (JavaCard 2.2.2) http://www.athena-scs.com/product.asp?pid=32 3B D5 18 FF 81 91 FE 1F C3 80 73 C8 21 10 0A ComSign digital signature card (eID) https://www.comsign.co.uk/ 3B D5 18 FF 81 91 FE 1F C3 80 73 C8 21 13 09 Athena IDProtect Key (v2) http://www.athena-scs.com/product.asp?pid=33 3B D5 95 04 00 AE 01 02 01 01 Axalto Cyberflex Access 64K v2b SM 1.1 3B D5 95 FF 80 91 FE 1F C3 80 73 C8 21 13 85 Athena IDProtect - Cryptographic Java Card http://www.athena-scs.com/product.asp?pid=32 3B D6 18 00 80 B1 80 6D 1F 03 80 51 00 61 10 30 9E Atmel/Athena T0 PC/SC Compliance Test Card No. 1 3B D6 18 00 81 31 FE 7D 41 53 50 20 4F 53 83 ASP FIXED CHAL1, 2, 3 and 4 (Other) 3B D6 18 00 81 B1 80 7D 1F 03 80 51 00 61 10 30 8F ASECard Crypto http://www.athena-scs.com/product.asp?pid=8 3B D8 18 FF 81 B1 FE 45 1F 03 80 64 04 1A B4 03 81 05 61 D-Trust multicard advanced 3.1 German public health insurance card ("Gesundheitskarte"), issuer SBK "Siemens Betriebskrankenkasse" 3B D8 96 FF 81 31 FE 45 80 64 04 1B B4 2A 81 05 5B Swiss LAMal health insurance card 3B D9 18 00 80 11 F0 80 54 43 4F 4C 44 82 90 00 62 TransaXiom Janus Card (Other) http://www.transaxiom.co.uk 3B D9 18 00 C0 09 10 FE 54 59 46 4F 4E 45 00 00 00 Tyfone's SideTap Card (NFC payments) 3B D9 94 00 00 4D 4D 41 52 33 31 34 90 00 Vodafone Spain 64kb SIM card. GSM/3G networks 3B D9 96 FF 81 31 FE 45 43 52 45 53 43 45 4E 44 4F FF HID Global Crescendo JCOP 21 v2.4.1 R2 64K (PKI) 3B DA 18 FF 81 B1 FE 75 1F 03 00 31 C5 73 C0 01 40 00 90 00 0C GnuPG card V2 3B DA 94 00 00 4D 4D 41 52 4A 2B 33 39 90 00 SIM card from Vodafone Spain 3B DB 11 FF 50 00 FF 00 00 00 00 00 00 00 07 92 16 03 NEC V-WAY64 v2.1 3B DB 18 00 80 1F 03 00 31 C0 64 77 E3 03 00 82 90 00 4F Oberthur ID-One Cosmo 64K V5.2 3B DB 18 00 80 B1 FE 45 1F 83 00 31 C0 64 C7 FC 10 00 01 90 00 FA Oberthur Cosmo V7 64K Dual/128K 3B DB 18 FF C0 80 B1 FE 75 1F 03 5A 43 37 2E 35 20 52 45 56 20 41 6F ZeitControl BasicCard ZC7.5 user-programmable dual interface smart card http://www.smartcardfocus.com/shop/ilp/id~380/BasicCard_ZC7_5_Dual_Interface/p/index.shtml 3B DB 18 FF C0 80 B1 FE 75 1F 03 5A 43 37 2E 35 20 52 45 56 20 44 6A Smart card BasicCard Professional ZC7.5, ZeitControl cardsystems GmbH http://www.zeitcontrol.de/en/products/chip-cards/processor-chip-cards/basiccard 3B DB 96 00 80 1F 03 00 31 C0 64 77 E3 03 00 82 90 00 C1 CAC (Common Access Card) 3B DB 96 00 80 1F 03 00 31 C0 64 B0 F3 10 00 07 90 00 80 DoD CAC, Oberthur ID One 128 v5.5 Dual 3B DB 96 00 80 1F 03 00 31 C0 64 B0 F3 10 00 0F 90 00 88 US Department of Veterans Affairs PIV 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 1A 18 01 00 07 90 00 5A Ercom CRYPTOSMART http://www.ssi.gouv.fr/entreprise/qualification/gamme-cryptosmart-pour-la-securisation-des-smartphones-et-des-tablettes/ 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 1A 18 01 00 0F 90 00 52 Serbian Car registration ID card http://blog.goranrakic.com/archives/2011/07/citanje_saobracajne_dozvole_sa_cipom.html 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 B0 FC 10 00 07 90 00 05 Oberthur Cosmo V7 debug card (SDK) 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 B0 FC 10 00 0F 90 00 0D ID-One PIV (that's the only non-numeric identifying mark) (PKI) 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 BE 1B 01 00 01 90 00 FB Bank card 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 C3 08 01 00 0F 90 00 9B SIM Aruba (Italian provider) 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 C7 FC 10 00 01 90 00 74 Oberthur Cosmo (eID) http://www.stampit.org 3B DB 96 00 80 B1 FE 45 1F 83 00 31 C0 64 C7 FC 10 00 0F 90 00 7A Guatemalan ID Card http://www.renap.gob.gt/ 3B DB 96 00 80 B1 FE 45 1F 83 00 31 E8 54 27 E6 04 00 0F 90 00 8C Token card from iBRE CompanyNet (mbank) (Bank) 3B DB 96 00 81 B1 FE 45 1F 03 80 F9 A0 00 00 03 08 00 00 10 00 18 Oberthur CS PIV End Point v1.08 FIPS201 Certified 3B DB 96 00 81 B1 FE 45 1F 03 80 F9 A0 00 00 03 48 00 00 00 01 49 Fly Clear card 3B DB 96 00 81 B1 FE 45 1F 83 80 F9 A0 00 00 03 08 00 00 10 00 98 Oberthur Cosmo v7 128K with PIV applet http://www.smartcardfocus.com/shop/ilp/id~410/p/index.shtml 3B DB 96 FF C0 10 31 FE 45 80 67 15 01 B4 03 00 09 00 81 05 21 Digital Tachograph Card for Professional Driver olish driver card for digital tachograph 3B DC 18 FF 80 91 FE 1F C3 80 73 C8 21 13 66 01 0B 03 52 00 05 39 Digital Signature Costa Rica (eID) 3B DC 18 FF 81 91 FE 1F C3 80 73 C8 21 13 66 01 06 01 30 04 01 55 Athena IDProtect Key Laser 3B DC 18 FF 81 91 FE 1F C3 80 73 C8 21 13 66 01 06 11 59 00 01 28 JaCarta (PKI) http://www.aladdin-rd.ru 3B DC 18 FF 81 91 FE 1F C3 80 73 C8 21 13 66 01 0B 03 52 00 05 38 Athena IDProtect Smart Card Logon Card 3B DD 18 00 81 31 FE 45 80 F9 A0 00 00 00 77 01 00 70 0A 90 00 8B National ID Card of Peru issued by RENIEC from Oberthur 3B DD 18 00 81 31 FE 45 80 F9 A0 00 00 00 77 01 08 00 07 90 00 FE Oberthur Cosmo v7 IAS ECC 3B DD 18 00 81 31 FE 45 90 4C 41 54 56 49 41 2D 65 49 44 90 00 8C Identity card (eID) Republic of Latvia http://www.pmlp.gov.lv/lv/pakalpojumi/passes/eid.html 3B DD 18 FF C0 80 B1 FE 45 1F C3 00 68 D2 76 00 00 28 04 04 11 00 90 00 C9 Russian Federation driver card for the digital tachograph Polish driver card for digital tachograph 3B DD 96 00 80 10 FE 80 31 80 63 01 FF C0 73 B3 21 1B 81 05 BIFIT iBank 2 USB Key (Bank) http://bifit.ua 3B DD 96 00 80 B1 FE 45 1F 83 80 64 05 03 04 00 56 56 44 53 41 45 54 FC VASCO DIGIPASS KEY 101 (Other) 3B DD 96 FF 81 B1 FE 45 1F 03 00 64 04 05 08 03 73 96 21 D0 00 90 00 C9 German public health insurance card ("Gesundheitskarte"), issuer Techniker Krankenkasse 3B DD 96 FF 81 B1 FE 45 1F 03 00 64 04 05 0A 02 73 96 21 D0 00 90 00 CA German public health insurance card ("Gesundheitskarte"), issuer Techniker Krankenkasse, issued 02/15 (HealthCare) 3B DD 96 FF 81 B1 FE 45 1F 03 00 64 05 73 10 A6 73 D6 21 C0 00 90 00 53 New european health insurance card of the German health insurance 3B DD 96 FF 81 B1 FE 45 1F 03 80 31 B0 52 01 03 64 04 1B B4 22 81 05 1B Austrian Motor Vehicle Registration Certificate (Transport) 3B DD 96 FF 81 B1 FE 45 1F 03 80 31 B0 52 02 03 64 04 1B B4 22 81 05 18 Austrian "e-card" G3 (State Health Insurance Card) (running StarCOS 3.4 by Giesecke & Devrient) 3B DD 97 FF 81 B1 FE 45 1F 03 00 64 04 05 08 03 73 96 21 D0 00 90 00 C8 German "eGK" (State Health Insurance Card) 3B DD 97 FF 81 B1 FE 45 1F 03 00 64 04 05 08 03 73 96 96 21 D0 00 90 C8 German public health insurance card ("Gesundheitskarte"), issuer Knappschaft 3B DE 11 00 00 49 43 4F 53 35 33 00 00 00 00 00 00 00 08 MyKID (eID) 3B DE 18 FF 81 F1 FB 34 00 1F 07 44 45 53 46 69 72 65 53 41 4D 56 31 2E 30 D2 Mifare Desfire SAM Module 3B DE 18 FF 81 F1 FE 43 00 3F 07 83 44 45 53 46 69 72 65 38 20 53 41 4D 2D 58 17 NXP SAM 3B DE 18 FF C0 80 B1 FE 45 1F 03 45 73 74 45 49 44 20 76 65 72 20 31 2E 30 2B Estonian Identity Card (EstEID v1.0 2006 cold) 3B DF 18 00 81 31 FE 58 00 31 B9 64 05 0E 01 00 73 B4 01 D3 00 00 00 22 Identity Card in Slovakia with security chip and e-signature 3B DF 18 00 81 31 FE 58 80 31 B0 52 02 04 64 05 C9 03 AC 73 B7 B1 D4 22 Austrian "e-Card" (=Health Card) of the 4th generation. (HealthCare) 3B DF 18 00 81 31 FE 67 00 5C 49 43 4D D4 91 47 D2 76 00 00 38 33 00 58 Infineon SICRYPT Card Module D4 PC/SC Compliance Test Card 3B DF 18 00 81 31 FE 7D 00 6B 02 0C 01 82 01 11 01 43 4E 53 10 31 80 FC Italian healtcare card (TS) National Service Card (CNS) (HealthCare) 3B DF 18 00 81 31 FE 7D 00 6B 15 0C 01 80 01 11 01 43 4E 53 10 31 80 E9 Provider: Actalis S.p.A. code: AT00006181 http://www.actalis.it 3B DF 18 00 81 31 FE 7D 00 6B 15 0C 01 81 01 11 01 43 4E 53 10 31 80 E8 Italian healthcare card (TS) National Service Card (CNS) Carta Regionale dei Servizi - Regione Lombardia Tuscany TS-CNS http://www.regione.toscana.it/cartasanitaria 3B DF 18 FF 81 31 FE 45 80 59 01 80 48 49 44 43 37 30 30 73 00 01 1B 33 Crescendo C700 + MiFare 4K http://www.smartcardfocus.com/shop/ilp/id~265/p/index.shtml 3B DF 18 FF 81 91 FE 1F C3 00 31 B8 64 0C 01 EC C1 73 94 01 80 82 90 00 B3 ebee card https://www.ebeeoffice.ca/ebee-home/public 3B DF 18 FF 81 F1 FE 43 00 1F 03 4D 49 46 41 52 45 20 50 6C 75 73 20 53 41 4D 98 Mifare SAM AV2 3B DF 18 FF 81 F1 FE 43 00 3F 03 83 4D 49 46 41 52 45 20 50 6C 75 73 20 53 41 4D 3B NXP SAM AV2 module 3B DF 94 FF C0 80 B1 FE 45 1F 03 00 6A D2 76 00 00 28 04 15 FA 10 04 00 90 00 6B UK Digital Tacho card (Other) 3B DF 94 FF C0 80 B1 FE 45 1F 03 00 6A D2 76 00 00 28 04 15 FA 40 04 00 90 00 3B DVLA Company Card (Transport) 3B DF 95 00 80 1F 87 80 31 A0 73 FF 21 00 63 45 B1 05 83 0F 90 00 60 FUTURE CARD Normal ISO SIM (Telecommunication) 3B DF 95 FF 80 91 FE 1F C3 80 25 A0 00 00 00 68 53 19 00 01 73 C8 21 13 29 CardLogix Credensys-J Contacted Java Card 2.2.1 Global Platform 2.1.1 (Atmel AT90SC12872RCFT) (bank) 3B DF 96 00 80 31 FE 45 00 31 B8 64 04 1F EC C1 73 94 01 80 82 90 00 EC Ministry of Interior - France "Agent Card" (Carte Agent du Ministère de l'Intérieur Français) 3B DF 96 00 80 31 FE 45 00 31 B8 64 04 29 EC C1 73 94 01 80 82 90 00 DA Finnish identity card given by the City of Helsinki to all members of city council, board and commitees 3B DF 96 00 81 B1 FE 45 1F 83 80 73 CC 91 CB F9 A0 00 00 03 08 00 00 10 00 79 Test PIV Cards available for sale from NIST http://csrc.nist.gov/groups/SNS/piv/testcards.html 3B DF 96 FF 81 31 FE 45 5A 01 80 48 49 44 43 31 31 58 58 73 00 01 1B 09 HID Crescendo iCLASS Px G8H 3B DF 96 FF 81 31 FE 45 80 59 01 80 50 49 56 43 4C 41 53 73 00 01 1B DE HID Global pivCLASS v1.0 (PKI) http://www.hidglobal.com/products/cards-and-credentials/pivclass/pivclass-smart-card 3B E0 00 00 81 31 20 40 30 SmarTEC 3B E0 00 FF 81 31 FE 45 14 "JUKICARD", digitally sign tax documents in Japan 3B E2 00 00 40 20 49 .. Schlumberger Cryptoflex 4k 3B E2 00 00 40 20 49 05 Schlumberger Cryptoflex DES 3B E2 00 00 40 20 49 06 Schlumberger Cryptoflex 3B E2 00 00 40 20 49 07 Schlumberger Cryptoflex Key Generation 3B E2 00 FF C1 10 31 FE 55 C8 02 9C Aladdin eToken PRO (USB token) Siemens CardOS M4.0 3B E3 00 FF 91 81 71 26 44 00 01 13 20 2D Metrebus Card (used in Rome to store personal information and Atac subscription. Atac is the public transport company of the city of Rome.) http://www.atac.roma.it/smart/smart.asp?A=2&S=22&PR=4&LNG=2 3B E5 00 00 81 21 45 9C 10 01 00 80 0D BIN 470132 -- BANK OF AMERICA VISA DEBIT -- GEMALTO MGY 0 U1090788B - 12/14 F8 00 89 (Bank) 3B E5 00 00 81 31 FE 45 D0 00 37 00 80 89 ATM card for Standard Chartered, Taiwan 3B E6 00 00 81 21 45 32 4B 01 01 01 01 7A Axalto Cyberflex Palmera V5 3B E6 00 FF 81 31 FE 45 44 49 20 30 32 4D 70 Alior Sync (Poland) - MasterCard Debit Card with PayPass (Bank) MasterCard Contactless Debit Card issued by Raiffeisen Bank in Czech Republic Debit MasterCard with paypass issued by Bank Zachodni WBK (Poland) Debit MasterCard with paypass issued by AliorSync 3B E6 00 FF 81 31 FE 45 44 49 20 30 32 56 6B VISA credit card (DKB) 3B E6 00 FF 81 31 FE 45 4A 43 4F 50 30 33 07 IBM JCOP 30/16 3B E6 00 FF 81 31 FE 45 4A 43 4F 50 31 30 05 IBM JCOP 10/16 Rental card for Blockbuster, Taiwan 3B E6 00 FF 81 31 FE 45 4A 43 4F 50 32 30 06 IBM JCOP 20/16 IBM JCOP20 with MIFARE or Datakey Smart Card Model 330J http://www.datakey.com/products/smart_cards/products_sc_330j.shtml 3B E6 00 FF 81 31 FE 45 4A 43 4F 50 32 31 07 IBM JCOP ID21 3B E6 00 FF 81 31 FE 45 4A 43 4F 50 33 30 07 Mifare ProX T=1 3B E6 00 FF 81 31 FE 45 4A 43 4F 50 33 31 06 IBM JCOP 30/31bio (contact interface) 3B E7 00 00 81 31 FE 42 00 63 95 31 05 90 00 B9 Chunghwa Post Co., Ltd. Visa Debit Card (Bank) http://www.post.gov.tw/post/internet/U_english/index.jsp?ID=24030107 3B E7 00 00 91 81 31 FE 41 01 10 30 01 00 90 80 49 "FirmenTicket" from the "Rheinbahn" for the "VRR" its a ticket corporates can buy for their employees. so its called "FirmenTicket". "Rheinbahn" is the local service operator for the mass traffic in and around duesseldorf/germany. "VRR" is traffic network spanning over at least a big part of north rhine westphalia (Verkehrsverbund Rhein-Ruhr) http://www.vrr.de/de/tickets_und_tarife/vielfahrer/firmenticket/index.php 3B E7 00 FF 81 31 FE 45 44 30 38 2E 30 20 36 57 EMV (MasterCard) card, issued by Raiffeisen Bank in Russia "Deutsche Kreditbank AG" Visa Card produced by AustriaCard GNC All cards (MasterCard, Maestro, VISA Electron) issued by Raiffeisen Bank in Romania EMV (MasterCard) Card, issued by Raiffeisen Bank in Czech Republic 3B E7 00 FF 81 31 FE 45 4D 43 41 20 38 20 36 52 Mastercard credit card issued by "PayLife Bank GmbH". Bank number is "5266" - Bawag PSK. 3B E8 00 00 81 31 20 45 00 73 C8 40 00 00 90 00 56 Visa credit card for Standard Chartered, Taiwan 3B E8 00 00 81 31 FE 45 00 73 C8 40 00 00 90 00 88 VISA Card (Skandinaviska Enskilda Banken) with Swedish BankID VISA card (Chinatrust Bank (Taiwan), dual-interface card with a Taipei Metro e-purse function) 3B E8 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 .. .. NXP JCOP v2.4.x (see hist bytes for more info) 3B E8 00 FF 81 31 FE 45 43 4C 61 69 72 65 20 36 1A DKB Visa card with PayWave 3B E9 00 00 81 21 45 45 4D 56 5F 41 54 52 20 06 6C VISA card, issued by HVB Bank Czech Republic or austrian BankAustria http://www.hvb.cz 3B E9 00 00 81 21 45 4D 43 5F 5F 49 4E 46 20 06 65 MasterCard Credit card issued by SpareBank1 in Norway http://www.sparebank1.no 3B E9 00 00 81 21 45 56 49 53 5F 49 4E 46 20 06 78 VISA card, issued by the Austrian "Raiffeisen" bank http://www.raiffeisen.at/ Visa Card - Maximum - Oyak Bank / Turkey VISA, issued by Austrian bank "Erste Bank" VISA card, issued by the Latvian bank "Latvijas Krajbanka" 3B E9 00 00 81 31 FE 45 43 44 32 69 09 00 00 00 00 B7 Swiss UBS MasterCard Creditcard 3B E9 00 00 81 31 FE 45 45 4D 56 20 30 33 20 20 06 99 Visa credit card MasterCard credit card 3B E9 00 00 81 31 FE 45 45 4D 56 30 32 5F 34 53 06 80 Maestro Card issued by "First Investment Bank" in Bulgaria http://fibank.bg/ Visa Electron card: TATRA BANKA, a.s. 3B E9 00 00 81 31 FE 45 4A 43 4F 50 31 30 56 32 32 A3 ORGA Open Platform DES 16k V2.0 / JCOP10 3B E9 00 00 81 31 FE 45 4A 43 4F 50 33 31 56 32 32 A0 JCOP 31 / 72k 3B E9 00 00 81 31 FE 45 4A 43 4F 50 34 31 56 32 32 A7 IBM JCOP v2.2 41 3B E9 00 00 81 31 FE 45 4D 43 41 20 30 33 20 20 06 88 PayLife Gold MasterCard -- an unbranded version of the master card 3B E9 00 FF C1 10 31 FE 55 00 64 05 00 C8 02 31 80 00 47 Identity card of Italian Republic 3B E9 00 FF C1 10 31 FE 55 C8 01 20 50 4E 34 30 31 32 AD Siemens CardOS/M 3.0 (SLE66CX160S) 3B EA 00 00 81 31 20 43 80 65 A2 01 01 01 3D 72 D6 43 A5 GemXpresso Pro R3 32PK (MPCOS, T=1) (warn reset) 3B EA 00 00 81 31 FE 45 00 31 C1 73 C8 40 00 00 90 00 7A Nigerian eID Card (cold reset) Chip is NXP JCOP 2.4.1R3 3B EA 00 00 81 31 FE 45 43 6F 6D 62 4F 53 20 49 49 00 FE UBS VISA Gold Card MasterCard from lhv.ee Nordea Bank Finland PLC Estonian Branch (ABnote) 3B EA 00 00 81 31 FE 45 4A 43 4F 50 33 31 56 32 33 32 90 NAB VISA Debit card 3B EA 00 00 81 31 FE 45 4A 43 4F 50 34 31 56 32 32 31 95 HID Crescendo C700 https://www.hidglobal.com/products/cards-and-credentials/crescendo/c700 3B EA 00 FF 81 31 20 75 00 64 05 14 01 02 31 00 90 00 27 GCOS-MDK 3B EA 00 FF 81 31 FE 45 54 55 42 2D 43 4B 01 03 01 00 7B Technische Universität Berlin - Campus Karte Maybe Sm@rtCafé Expert 2.0 (Giesecke & Devrient) or GemXpresso 211 PK (Gemplus) Includes a Mifare-Chip (1 KB - Memory-Chip) 3B EB 00 00 81 31 42 45 4E 4C 43 68 53 43 4B 30 34 30 31 2B Dutch University accesscard & Electronic purse & telphone card 3B EB 00 00 81 31 42 45 4E 4C 43 68 69 70 70 65 72 30 31 0A Dutch Post (Chipper) 3B EC 00 00 40 32 42 4C 55 45 20 44 52 41 47 4F 4E 20 43 00 01 Pay TV 3B EC 00 00 40 32 54 49 54 41 4E 49 55 4D 00 13 02 02 Titanium 2 Card Pirat Card for Seca 2 / Viaccess 2004 (Pay TV) 3B EC 00 FF 81 31 FE 45 A0 00 00 00 56 33 33 30 4A 33 06 00 A1 Datakey model 330J card, www.datakey.com http://www.hmk.de/downloads/datakey/Model_330J_Smart_Card.pdf Model 330J JavaCard v2.1.1 Global Platform v2.0.1 specifications. JCCOS operating system applet (Java-based Cryptographic Card Operating System) 3B ED 00 00 81 31 20 43 80 31 80 65 B0 83 02 04 7E 83 00 90 00 32 Latvian Digital Signature Card (warm) http://www.eme.lv/ 3B ED 00 00 81 31 80 42 80 31 80 65 B0 87 27 01 BC 83 08 90 00 7D EMV (V PAY) Issued by UniCredit Bulbank Bulgaria 3B EE 00 00 81 31 80 42 80 31 80 66 B0 84 0C 01 6E 01 83 00 90 00 8E E.SUN Commercial bank debit master card (Bank) 3B EE 00 00 81 31 FE 45 00 31 80 71 86 65 01 67 02 A0 0A 83 90 00 1B IBM JCOP "Java Card 2.1.1" et "Open Plaform 2.0.1" 3B EE 00 00 81 31 FE 45 80 31 80 66 40 90 93 06 0F 17 83 01 90 00 FD Health insurance (HealthCare) 3B EE 00 00 81 31 FE 45 80 31 80 66 40 90 93 06 0F 17 83 0F 90 00 F3 IC card for the National Health Insurance, Taiwan 3B EF .. 00 40 14 80 25 43 45 52 45 53 57 .. .. 01 01 03 90 00 Electronic Identification Card from the FNMT, the Spanish Official Certification Authority (Fábrica Nacional de Moneda y Timbre) FNMT-Ceres Siemens Infineon SLE 19 3B EF .. 00 40 14 80 25 43 45 52 45 53 57 .. .. 01 02 03 90 00 FNMT-Ceres Siemens Infineon SLE 20 Fábrica Nacional de Moneda y Timbre 3B EF 00 00 81 31 20 49 00 5C 50 43 54 10 27 F8 D2 76 00 00 38 33 00 4D Infineon Technologies PC/SC Compliance Test Card V1.0 3B EF 00 00 81 31 40 69 00 5C 50 43 53 35 C5 3A D2 76 00 00 38 33 00 0F Siemens Nixdorf Sicrypt 3B EF 00 00 81 31 FC 45 80 31 80 65 11 01 13 00 01 53 41 43 45 81 04 21 Slovenska sporitelna (SLSP) Bank card, Maestro Card with chip 3B EF 00 00 81 31 FC 45 80 31 80 65 11 11 23 10 02 53 41 43 45 81 04 12 VISA card issued by UBS, Switzerland 3B EF 00 00 81 31 FE 45 41 74 41 43 4F 53 32 2E 34 53 45 20 4C 63 37 C9 Maestro Polish Alior debit card (Bank) 3B EF 00 00 81 31 FE 45 43 44 32 69 A9 81 00 00 20 20 20 20 20 20 00 90 UBS Switzerland Mastercard credit card (Bank) 3B EF 00 00 81 31 FE 45 43 4D 42 5F 43 6F 6D 44 44 41 30 30 35 35 00 F7 Master Card (emitted by bank Nordea - Lithuania) 3B EF 00 00 81 31 FE 45 43 4D 42 5F 43 6F 6D 53 44 41 30 30 34 30 00 E4 VISA (Danske Bank Eesti / www.sampopank.ee) 3B EF 00 00 81 31 FE 45 43 4D 42 5F 43 6F 6D 53 44 41 30 30 35 31 00 E4 Visa (Sampo Estonia, 2010) 3B EF 00 00 81 31 FE 45 43 6F 6D 62 4F 53 20 56 49 20 20 20 20 20 00 C4 VfB Stuttgart Fankarte (pay card for the football stadium of the german club VfB Stuttgart) 3B EF 00 00 81 31 FE 45 44 4C 41 5A 46 54 56 32 44 49 44 31 30 30 FF 06 Lufthansa ID Card (eID) 3B EF 00 00 81 31 FE 45 46 49 4F 4D 4B 5F 30 30 31 20 30 31 30 41 00 9C MasterCard/PayPass Card issued by Czech FIO Banka a.s. (contact chip) note the ASCII string ' FIOMK_001 010A' embedded in ATR 3B EF 00 00 81 31 FE 65 00 5C 50 43 53 D1 91 47 D2 76 00 00 38 33 00 70 Siemens/Infineon Sicrypt S26381-F252-V1 GS:03 3B EF 00 00 81 31 FE 67 00 5C 49 43 4D DB C9 7E D2 76 00 00 38 33 00 1E Infineon SICRYPT CardModule Card 3B EF 00 FF 81 31 .. 45 65 63 Debit card (Germany): ec-cash, GeldKarte(DEM), Maestro, Cirrus 3B EF 00 FF 81 31 20 45 42 61 73 69 63 43 61 72 64 20 5A 43 32 2E 33 BD ZeitControl BasicCard Enhanced 2.3 3B EF 00 FF 81 31 20 45 42 61 73 69 63 43 61 72 64 20 5A 43 33 2E 33 BC Electronic Purse (Elton Senegal) 3B EF 00 FF 81 31 20 75 42 61 73 69 63 43 61 72 64 20 5A 43 33 2E 33 8C ZeitControl BasicCard Enhanced 3.3 3B EF 00 FF 81 31 20 75 42 61 73 69 63 43 61 72 64 20 5A 43 33 2E 37 88 ZeitControl BasicCard Enhanced 3.7 3B EF 00 FF 81 31 20 75 42 61 73 69 63 43 61 72 64 20 5A 43 33 2E 39 86 ZeitControl BasicCard Enhanced 3.9 3B EF 00 FF 81 31 42 45 .* 38 UNI-Card 3B EF 00 FF 81 31 42 45 65 63 03 02 03 02 80 00 22 40 48 95 96 00 20 28 Scard Sparkasse Detmold, Deutschland BLZ 47650130 3B EF 00 FF 81 31 50 45 42 61 73 69 63 43 61 72 64 20 5A 43 31 2E 31 CC ZeitControl BasicCard Compact 1.1 3B EF 00 FF 81 31 50 45 65 63 .. .. .. .. .. .. .. .. .. .. .. .. .. .. GeldKarte v2 (Germany) 3B EF 00 FF 81 31 50 45 65 63 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Geldkarte v2 3B EF 00 FF 81 31 50 45 65 63 08 0B 40 02 80 00 08 15 20 03 36 04 00 7E old banking card (electronic-card / Maestro / Geldkarte) of the Stadt-Sparkasse Duesseldorf (like the above, but old - around 2002). 3B EF 00 FF 81 31 50 45 65 63 0D 24 20 02 80 00 05 08 33 56 10 01 02 43 German ec card 3B EF 00 FF 81 31 52 45 4D 46 43 20 49 42 4D 20 34 30 48 39 36 30 31 FB IBM MFC 3.5 file system smart card (Card from the book "Smart Card Application Development Using Java") 3B EF 00 FF 81 31 60 45 65 63 04 02 11 00 00 00 00 00 A5 32 A5 01 11 B6 GledKarte Siemens M3-Module with a Motorola SC-28. G&D (Giesecke&Devrient) Geldkarten-OS mit der Version 11 3B EF 00 FF 81 31 60 45 65 63 06 03 14 02 50 00 06 51 08 11 5E 01 41 90 Geldkarte from Deutsche Bank, Thomson-Chip 3B EF 00 FF 81 31 66 45 49 42 4D 20 4D 46 43 34 30 30 32 30 38 33 31 A1 IBM MFC 4.1 file system smart card Card from the book "Smart Card Application Development Using Java" authors: Uwe Hansmann, Martin. S. Nicklous, Thomas Schäck, Achim Schneider, Frank Seliger 3B EF 00 FF 81 31 66 45 65 63 20 20 49 42 4D 20 33 2E 31 20 20 20 20 IBM eCash 3B EF 00 FF 81 31 66 45 65 63 20 20 49 42 4D 20 33 2E 31 20 20 20 20 CF IBM eCash 3B EF 00 FF 81 31 86 45 49 42 4D 20 4D 46 43 34 30 30 30 30 38 33 31 43 ComCard MFC 4.1 3B EF 00 FF 81 31 FE 45 65 63 11 04 01 02 80 00 0F 27 40 00 03 01 00 E1 Postbank Geldkarte 3B EF 00 FF 81 31 FE 45 65 63 11 04 01 02 80 00 0F 46 20 04 23 01 00 C4 Postbank ec/Maestro (Germany) 3B EF 00 FF 81 31 FE 45 65 63 19 01 62 02 80 00 0F 00 35 00 42 06 20 BB Credit card (Germany, Postbank AG): VISA 3B EF 00 FF 81 31 FE 45 80 31 C0 6B 49 42 4D 20 4A 65 74 5A 20 4D 32 39 UBS Internet Card (IBM JetZ M2) 3B EF 00 FF 81 31 FE 45 80 31 E0 6B 04 21 05 02 6B 55 55 55 55 55 55 68 MasterCard credit card for Mega International Commercial Bank, Taiwan (Bank) https://www.megabank.com.tw/creditcard/index.asp 3B EF 00 FF 81 31 FF 65 49 42 4D 20 4D 46 43 39 32 32 39 32 38 39 30 17 IBM MFC 4.22 (University of Cambridge smartchip card) 3B F0 12 00 FF 91 81 B1 7C 45 1F 03 99 Japanese Chijou Digital B-CAS Card (pay TV) 3B F0 12 00 FF 91 81 B1 EF 45 1F 03 0A Japanese Digital CATV C-CAS card 3B F0 13 00 00 10 00 MasterCard ETEC InterOp 27. This is an dual-app Maestro/MasterCard Credit EMV test card 3B F0 13 00 00 81 31 FE 45 E8 Healt care card Romania (HealthCare) http://www.cnas.ro/casmb/national-page/cardul-national-de-asigurari-de-sanatate-2.html 3B F2 18 00 00 C1 0A 31 FE 55 C8 06 75 HID iCLASS P16K C4H proximity card used for both door locks and keystore 3B F2 18 00 02 C1 0A 31 FE 55 C8 07 76 Siemens CardOS V4.3 3B F2 18 00 02 C1 0A 31 FE 58 C8 08 74 Siemens CardOS V4.3B D-Trust multicard 2.1 (may only be the testcard for it) 3B F2 18 00 02 C1 0A 31 FE 58 C8 09 75 Siemens CardOS V4.2B 3B F2 18 00 02 C1 0A 31 FE 58 C8 0B 77 CardOS V4.2C (SLE66CX360PE dual interface) 3B F2 18 00 FF C1 0A 31 FE 55 C8 06 8A Siemens CardOS M 4.2 (SLE66CX642P) 3B F2 98 00 FF C1 10 31 FE 55 C8 03 15 Siemens CardOS M 4.01 (SLE66CX320P) 3B F2 98 00 FF C1 10 31 FE 55 C8 04 12 CardOS M4.01a (SLE66CX322P) 3B F3 96 00 FF C0 0A 31 FE 4D 80 31 E0 83 MARX Cryptoken (supported by RaakSign) 3B F4 18 00 02 C1 0A 31 FE 58 56 34 63 76 C5 Eutron CryptoIdentity (reader + card token) 3B F4 18 00 FF 81 31 80 55 00 31 80 00 C7 Identity card of Italian Republic 3B F4 98 00 FF C1 10 31 FE 55 4D 34 63 76 B4 Eutron Digipass 860 (reader + card token) 3B F5 18 00 00 81 31 FE 45 4D 79 45 49 44 9A Aventra ActiveSecurity MyEID http://www.aventra.fi/pdf/ActiveSecurity%20MyEID%20Tokens%20white%20paper%20(2p)%20EN.pdf 3B F5 91 00 FF 91 81 71 FE 40 00 41 00 00 00 00 05 Contactless Mifare Ultralight 3B F5 91 00 FF 91 81 71 FE 40 00 41 08 00 00 00 0D Contactless Mifare 3B F5 91 00 FF 91 81 71 FE 40 00 41 18 00 00 00 1D Contactless Mifare 4k 3B F5 91 00 FF 91 81 71 FE 40 00 41 88 00 00 00 8D Contactless Mifare 1k or 4k 3B F5 91 00 FF 91 81 71 FE 40 00 42 00 01 00 81 86 American Express Blue RFID 3B F5 91 00 FF 91 81 71 FE 40 00 42 00 01 77 D1 A1 German Passport (ePass) (issued May 2008) 3B F6 18 00 FF 81 31 FE 45 4A 32 41 30 38 30 1B NXP J2A080 - 80K (blank) http://www.classic.nxp.com/acrobat_download2/literature/9397/75016728.pdf 3B F6 18 00 FF 81 31 FE 45 4A 43 4F 50 32 30 0E IBM JCOP20 3B F6 18 00 FF 81 31 FE 45 4A 43 4F 50 33 30 0F Philips P8RF5016 running IBM JCOP 30 (contact interface) 3B F6 18 00 FF 81 31 FE 45 4A 43 4F 50 33 31 0E IBM JCOP BIO31 IBM JCOP BIO31 Java card 3B F7 11 00 00 81 71 80 42 00 00 63 95 0A 01 90 00 B9 ATM Card for Chunghwa Post Inc., Taiwan 3B F7 11 00 00 81 71 FE 42 00 00 63 95 01 01 90 00 CC ATM Card for Mega International Commercial Bank, Taiwan ATM card for HSBC Direct, Taiwan ATM card for TaChong Bank, Taiwan ATM card for Chunghwa Post, Taiwan VISA card for Taipei Fubon Bank, Taiwan ATM card for Cathay United Bank, Taiwan (Bank) https://www.cathaybk.com.tw/cathaybk/english/eindex.htm 3B F7 11 00 00 81 71 FE 42 00 00 63 95 31 02 90 00 FF VISA card for Taipei Fubon Bank, Taiwan 3B F7 11 00 00 81 71 FE 42 00 00 63 95 31 05 90 00 F8 ATM card for Chunghwa Post, Taiwan ATM card for E.Sun Commercial Bank, Taiwan 3B F7 11 00 01 40 96 54 30 04 0E 6C B6 D6 90 00 PIC16F876-04/SP (PICCard2) or PIC16F84A-04/P + 24LC16B (PICCard1) or Canal + Canal Digital Spain year 2000/2001 or PIC Silver Card 2 (PIC16F876/7 + 24C64) 3B F7 11 00 01 40 96 57 60 14 0E 6C B6 D6 old SECA of D+ Italian sat pay tv 3B F7 11 00 01 40 96 58 42 14 0E 6C B6 D6 UK on digital (terrestrial digital TV card) 3B F7 11 00 01 40 96 70 70 07 0E 6C B6 D6 Cyfra+ SECA Card http://cyfraplus.pl/ 3B F7 11 00 01 40 96 70 70 07 0E 6C B6 D6 90 00 M-II (a.k.a. M-2, a.k.a. Platinum Card), AT90SC6464C based KnotCard II TitaniumElite 3B F7 11 00 01 40 96 70 70 0A 0E 6C B6 D6 TopUp TV NagraVision viewing card 3B F7 11 00 01 40 96 70 70 0A 0E 6C B6 D6 90 00 Canal Digitaal (Pay TV) http://webshop.canaldigitaal.nl/nl/smartcards-2 3B F7 11 00 01 40 96 70 70 17 0E 6C B6 D6 Canal Satellite card (VERSION 7.1 SYSTEM / SECA2) 3B F7 11 00 01 40 96 70 70 37 0E 6C B6 D6 Carte pour decodeur cable numérique (fourni par www.voo.be et www.ledecodeur.be) 3B F7 11 00 01 40 96 70 70 67 0E 6C B6 D6 UK TopUp TV 3B F7 11 00 01 40 96 70 71 09 0E 6C B6 D6 Carte pour décodeur télé de Neuf Telecom TV 3B F7 13 00 00 81 31 FE 45 46 4F 4D 53 4F 4D 53 A9 Health card Russian Federation 3B F7 13 00 00 81 31 FE 45 4A 43 4F 50 32 34 .. .. NXP JCOP v2.4.x (see hist bytes for more info) 3B F7 18 00 00 80 31 FE 45 73 66 74 65 2D 6E 66 C4 SmartCafe Expert 3.2 72K 3B F7 18 00 00 80 31 FE 45 FE 42 47 52 65 49 44 24 Bulgarian eID PKI card pilot on IFX SLE78 jTOP (PKI) 3B F7 18 00 00 81 71 80 42 00 00 63 95 0A 01 90 00 B0 7-Eleven icash card, Taiwan 3B F7 91 00 FF 91 81 71 FE 40 00 0A 02 60 CF 51 04 CB 7F UK Metro Bank Mastercard Debit (Bank) https://www.metrobankonline.co.uk/ 3B F7 91 00 FF 91 81 71 FE 40 00 41 20 00 11 77 81 80 40 Contactless Mifare DESFire 3B F8 11 20 03 40 FF FF FF FF FF 12 10 90 00 G&D (STARCOS SV 1.1) 3B F8 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 .. .. NXP JCOP v2.4.x (see hist bytes for more info) 3B F8 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 31 B7 Nigerian eID Card (blank card) Chip is NXP JCOP 2.4.1R3 3B F8 13 00 00 81 31 FE 45 52 41 41 4B 43 32 76 35 CB Raak C2 Smart Card (PKI) http://www.raaktechnologies.com/software-downloads-documentation/ 3B F8 13 00 00 81 31 FE 45 53 6D 61 72 74 41 70 70 F8 national Lithuania ID card 3B F8 18 00 00 80 31 FE 45 00 73 C8 40 13 00 90 00 92 G&D StarSign Token 3B F8 18 00 00 81 31 FE 45 00 73 C8 40 00 00 90 00 80 NXP JCOP 31 V2.2 36K - S/C I/F 3B F8 18 00 00 81 31 FE 45 00 73 C8 40 13 00 90 00 93 Giesecke & Devrient Sm@rtCafé Expert 3.0 3B F8 18 00 00 81 31 FE 45 4A 43 4F 50 56 32 34 31 9C NXP JCOP2.4.1 J3A080 80KB T=1 GP2.1.1 JC2.2.2 SCP02 3B F8 18 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 31 BC NXP J2A080 JavaCard 3B F8 18 00 FF 81 31 FE 45 00 73 C8 40 00 00 90 00 7F NXP JCOP 10 NXP JCOP 31 (contact interface) 3B F8 18 00 FF 81 31 FE 45 4A 43 4F 50 76 32 34 31 43 VIVOtech SAM NXP JCOP V241 NXP J3A081 JavaCard (contact interface) 3B F9 11 00 00 81 31 FE 45 43 6F 6D 62 4F 53 20 56 00 AA VISA Card (Bank) 3B F9 13 00 00 81 31 F0 45 4E 42 55 02 00 03 20 00 00 97 Bank 3B F9 13 00 00 81 31 FE 45 45 4F 4E 43 61 72 64 56 31 F6 NXP J2A080 (PKI) http://www.smartcardsource.com/contents/en-ca/d9_JCOP-NXP-cards.html 3B F9 13 00 00 81 31 FE 45 4A 43 4F 50 32 34 .. .. .. .. NXP JCOP v2.4.x (see hist bytes for more info) 3B F9 13 00 00 81 31 FE 45 4A 43 4F 50 34 31 56 32 34 A2 JCOP41 v2.4 3B F9 13 00 FF 10 80 80 31 E0 55 42 45 52 47 53 Banrisul bank 3B F9 18 00 00 80 31 FE 45 80 57 4E 45 4F 57 41 56 45 7D Neowave Weneo 3B F9 18 00 00 81 31 FE 45 39 35 32 38 35 30 31 33 31 DA JCOP31 / 72B1 V2.2 (4096 RSA key support) Smartcard Dual Interface JCOP31 with 72KB EEPROM and V2.2 Java Card Open Platform 3B F9 18 00 00 81 31 FE 45 4A 32 44 30 38 31 5F 50 56 B6 NXP J2D081 Java Card 80KB JCOP 2.4.2 R2 GP 2.2.1 JC 3.0.1 (JavaCard) http://www.javacardsdk.com/Index.aspx?p0=AAT1P0000012&p1=1&p2=1&p3=1&p4=0&p5=1 3B F9 18 00 00 81 31 FE 45 4A 43 4F 50 32 31 56 32 32 A9 NXP JCOP 21 V2.2 36K 3B F9 18 00 00 81 31 FE 45 4A 43 4F 50 33 31 56 32 32 A8 JCOP31 / 72B1 V2.2 Smartcard Dual Interface JCOP31 with 72KB EEPROM and V2.2 Java Card Open Platform 3B F9 94 00 00 81 31 FE 65 46 54 20 56 31 30 30 90 00 83 ePass 2000 3B F9 96 00 00 81 31 FE 45 45 4F 4E 43 61 72 64 56 31 73 eONCard V1 (PKI) 3B F9 98 00 FF C1 10 31 FE 55 41 4D 20 43 4D 44 31 31 30 83 Service card of the Ministry of Defense of Italy - Military Aviation 3B F9 98 00 FF C1 10 31 FE 55 45 49 20 43 4D 44 31 31 30 83 Service card of the Ministry of Defense of Italy - Italian Army 3B F9 98 00 FF C1 10 31 FE 55 4D 4D 20 43 4D 44 31 31 30 8F Service card of the Ministry of Defense of Italy - Navy 3B F9 98 00 FF C1 10 31 FE 55 50 43 20 43 4D 44 31 31 30 9C Service card of the Ministry of Defense of Italy - Civil personnel 3B FA 11 00 00 81 31 FE 45 43 6F 6D 62 4F 53 20 49 56 00 E0 MyWireCard 2go Prepaid VISA Card 3B FA 11 00 02 40 60 43 C6 02 F8 03 03 00 00 90 00 DeLaRue DX(?) 3B FA 13 00 00 81 31 FE 15 59 75 62 69 6B 65 79 4E 45 4F A6 Yubikey NEO 3B FA 13 00 00 81 31 FE 45 00 31 C1 73 C8 40 00 00 90 00 79 Nigerian eID Card (warm reset) Chip is NXP JCOP 2.4.1R3 3B FA 13 00 00 81 31 FE 45 44 65 78 61 20 43 46 20 76 31 98 Dexa Systems Crossfire Card (PKI) http://www.dexasystems.com/products-services/products/dexa-smartcards-credential-tokens-peripherals 3B FA 13 00 00 81 31 FE 45 4A 43 4F 50 3. 3. 56 32 33 32 .. JCOPxx/yy v2.3.2 (see hist bytes for more info) 3B FA 13 00 00 81 31 FE 45 4A 43 4F 50 32 31 56 32 33 31 91 NXP JCOP 21 V2.3.1 36K 3B FA 13 00 00 81 31 FE 45 4A 43 4F 50 34 31 56 JCOP41 V221 3B FA 13 00 00 81 31 FE 45 4A 43 4F 50 34 31 56 32 33 31 97 JCOP41 /72K (eID) 3B FA 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 .. .. .. .. NXP JCOP v2.4.x (see hist bytes for more info) 3B FA 13 00 FF 81 31 80 45 00 31 C1 73 C0 01 00 00 90 00 B1 OpenPGP 3B FA 18 00 00 80 31 FE 45 FE 65 49 44 20 2F 20 50 4B 49 03 Estonian Identity Card (EstEID v3.5 (10.2014) cold) (eID) http://id.ee/ 3B FA 18 00 00 81 31 FE 45 06 08 60 84 10 01 87 6F 06 02 FE Card used by the Dutch health insurers to give medical personell access to patient insurance information 3B FA 18 00 00 81 31 FE 45 4A 33 41 30 34 30 56 32 34 31 84 NXP J3A 40K Java Card v2.2.2 - Global Platform v2.2.1 Dual-interface functionality (features 1K Mifare emulation) 3B FA 18 00 00 81 31 FE 45 4A 33 41 30 38 31 56 32 34 31 89 NXP JCOP CJ3A081 http://www.usmartcards.com/media/downloads/492/NXP%20P5CX012%2002X%2040%2073%2080%20144%20%20%202011.pdf 3B FA 18 00 00 81 31 FE 45 4A 43 4F 50 34 31 56 32 32 31 9D NXP JCOP 41 v2.2.1 72k SmartCard I/F 3B FA 18 00 02 C1 0A 31 FE 58 4B 53 77 69 73 73 53 69 67 6E 89 SuisseId card (used for qualified signatures) http://postsuisseid.ch/de/suisseid http://www.suisseid.ch/ 3B FA 18 00 FF 81 31 FE 45 4A 43 4F 50 32 31 56 32 33 31 65 TrubDemax healthcare card JCOP 21 / 72k 3B FA 18 00 FF 81 31 FE 45 4A 43 4F 50 34 31 43 32 30 30 74 HID Crescendo C200 https://www.hidglobal.com/sites/hidglobal.com/files/resource_files/crescendo-c200-c700-smart-card-ds-en.pdf 3B FA 18 00 FF 81 31 FE 45 4A 43 4F 50 34 31 56 32 32 31 62 JCOP41 HID Crescendo C700 http://www.hidcorp.com/ Should be compatible to RAAK http://www.raaktechnologies.com/ Marx CrypToken MX2048-JCOP USB Token 3B FA 18 00 FF 81 31 FE 45 4A 43 4F 50 34 31 56 32 33 31 63 JCOP41 V2.3.1 Dual Interface, Mifare emulation, 72K (NXP SmartMX P5CT072) JCOP (Java Card OpenPlatform) is a Java smart card distributed and developed by NXP. The JCOP 41 v2.3.1. is an USB-smart card and can be used not only with standard smart card reader, but also with simple USB-connectors. The JCOP card is connected as ICCD card and can be used with such ICCD standard drivers. JCOP 41 is a Dual-Interface Smart Card, that means, the card can also be contacted with a contactless card reader. For building access systems, this card is also be able to emulate Mifare Classic 1k/4k. JCOP 41 v2.3.1 is compliant to JavaCard Standard 2.2.1. and GlobalPlattform 2.1.1. Their cryptographic features supports RSA up to 2432 bit, 'Eliptic curves' - ECC GF(2n), AES and 3DES. More information is available here: http://www.nxp.com/documents/short_data_sheet/P5Cx009_P5Cx072_FAM_SDS.pdf 3B FA 94 00 00 81 31 20 43 80 65 A2 01 01 01 3D 72 D6 43 21 GemXpresso Pro R3 32PK (MPCOS, T=1) 3B FA 96 00 00 80 31 FE 45 00 31 C8 23 97 52 27 0F 90 00 C1 Swedish ID card (eID) 3B FA 96 00 00 81 31 80 43 80 65 A2 01 01 01 3D 72 D6 43 83 Malta identity card delivered by the Identity Management Office (eID) https://mhas.gov.mt/en/MHAS-Departments/Land%20Public%20Registry/Pages/ID-MO.aspx 3B FA 98 00 FF C1 10 31 FE 55 C8 03 53 41 47 5F 50 4B 49 32 77 Siemens corporate ID card (access to the building / rooms etc, stores PKI private keys/certificates) 3B FA 98 00 FF C1 10 31 FE 55 C8 04 53 41 47 5F 50 4B 49 32 70 Siemens Corporate Card (Belgium , Germany) 3B FB 11 00 00 40 28 80 59 53 50 59 52 55 53 AE 00 02 Spyrus Rosetta Basic 3B FB 11 00 00 40 78 80 59 53 50 59 52 55 53 AE 02 02 Rosetta® Series II Smart Card manufactured by Spyrus http://spyrus.com/products/rosetta_smart_usb.asp 3B FB 11 00 00 81 31 FE 45 00 31 C0 64 77 E9 10 00 00 90 00 6A OCS ID-One Cosmo Card USB Token 3B FB 13 00 00 81 31 FE 45 4A 43 4F 50 53 3. 3. 56 32 33 32 .. JCOP-Sxx/yy v2.3.2 (see hist bytes for more info) 3B FB 13 00 FF 81 31 80 75 5A 43 35 2E 35 20 52 45 56 20 47 63 ZeitControl BasicCard 5.5 3B FB 13 00 FF 81 31 80 75 5A 43 35 2E 36 20 52 45 56 20 4D 6A ZeitControl BasicCard ZC5.6 user-programmable smart card http://www.basiccard.com/index.html?overview.htm 3B FB 13 00 FF 81 31 80 75 5A 43 36 2E 35 20 52 45 56 20 43 64 ZeitControl BasicCard 6.5, multiapplication with 30 kByte EEPROM 3B FB 13 00 FF C0 80 31 80 75 5A 43 35 2E 34 20 52 45 56 20 41 A5 ZeitControl BasicCard Professional 5.4 Revision A 3B FB 13 00 FF C0 80 31 80 75 5A 43 35 2E 34 20 52 45 56 20 48 AC ZeitControl BasicCard Professional 5.4 3B FB 18 00 00 40 78 80 59 53 50 59 52 55 53 0B 04 02 SPYRUS Rosetta Series 2 (eID) http://www.spyrus.com/rosetta-hsm/ 3B FB 18 00 00 40 78 80 59 53 50 59 52 55 53 AE 04 02 Spyrus Rosetta Series II 3B FB 18 00 00 81 31 FE 45 00 31 C0 64 77 E9 10 00 01 90 00 62 ID card for personal of "Govern Illes Balears" http://www.caib.es/sacmicrofront/contenido.do?cont=7584&mkey=M08110610180317195848&&lang=en 3B FB 91 00 FF 91 81 71 FE 40 00 41 20 00 01 00 81 20 63 CB A0 80 03 Carrefour, MasterCard credit card, Pass Banque, Oberthur - contactless/PayPass 3B FB 96 00 00 80 31 FE 45 00 31 C0 64 77 E3 02 00 82 90 00 76 Oberthur ID-One Cosmo 3B FB 96 00 00 81 31 FE 45 00 31 C0 64 77 E9 10 00 01 90 00 EC Oberthur ID-ONE v5.4 3B FB 96 00 00 81 31 FE 45 00 31 C0 64 77 E9 10 00 0F 90 00 E2 Elektroniczna Legitymacja Studencka - Polish Student's ID Issued in Poznan in 2007 3B FB 96 00 00 81 31 FE 45 00 31 E8 54 27 E6 01 00 07 90 00 BC Gemalto (PKI) 3B FB 96 00 00 81 31 FE 45 56 44 53 49 35 40 01 00 04 00 01 1F Vasco DIGIPASS KEY 200 usb token http://www.vasco.com/products/digipass/digipass_pki/digipass_pki_keys/digipass_key_200.aspx Should contain a 'Oberthur cosmo v 5.4 or V7.0D' smartcard 3B FB 98 00 FF C1 10 31 FE 55 00 64 05 20 47 03 31 80 00 90 00 F3 Gemplus GemGate 32K distributed by Postecert (www.postecert.it) to legally sign documents 3B FC 13 00 00 81 31 FE 15 59 75 62 69 6B 65 79 4E 45 4F 72 33 E1 YubiKey NEO (PKI) http://www.yubico.com/ 3B FC 13 00 00 81 31 FE 45 59 75 62 69 6B 65 79 4E 45 4F 72 33 B1 Yubikey Neo http://www.yubico.com/products/yubikey-hardware/yubikey-neo/ 3B FC 18 00 00 81 31 80 45 90 67 46 4A 00 64 16 06 F2 72 7E 00 E0 PIVKey C910 PKI Smart Card (eID) http://pivkey.com/ 3B FC 18 00 00 81 31 80 45 90 67 46 4A 00 64 2D 70 C1 72 FE E0 FE pivkey token (JavaCard) http://www.pivkey.com/ 3B FC 18 00 00 81 31 80 45 90 67 46 4A 00 68 08 0. 00 00 00 00 0. Feitian A22 JavaCard (150K) (JavaCard) http://www.smartcardfocus.com/shop/ilp/id~712/javacos-a22-dual-interface-java-card-150k/p/index.shtml Feitian A40 JavaCard (64K) (JavaCard) http://www.smartcardfocus.com/shop/ilp/id~711/javacos-a40-dual-interface-java-card-64k/p/index.shtml 3B FC 18 00 00 81 31 80 45 90 67 46 4A 01 64 2F 70 C1 72 FE E0 FD Feitian eJavaToken (JavaCard) http://www.ftsafe.com/product/epass/eJavaToken 3B FC 98 00 FF C1 10 31 FE 55 C8 03 49 6E 66 6F 63 61 6D 65 72 65 28 New Card Infocamere (Italy) series 1402... http://www.card.infocamere.it/ Siemens Informatica - Siemens M4.01a chip Infineon SLE66CX322P (CC EAL5) Memory EEPROM: 32KB Operating system CARDOS Max numero dei tentativi PIN: 3 Pin: da 5 a 8 digit Unblocked by tool CARDOS API 2.2 3B FD 13 00 00 81 31 FE 45 41 37 30 30 36 43 47 20 32 34 32 52 31 D6 YubiKey NEO (token) 3B FD 13 00 00 81 31 FE 45 4A 43 4F 50 32 31 76 32 33 31 47 44 54 E1 National Health Insurance Card, Taiwan 3B FD 18 00 00 80 31 FE 45 00 31 80 71 8E 64 52 D9 04 00 81 90 00 5B Oberthur Card Systems, authentIC 3B FD 18 00 00 80 31 FE 45 73 66 74 65 2D 63 64 30 38 30 2D 6E 66 DC G&D Sm@Cafe 3.1 (eID) 3B FD 18 00 00 81 31 FE 45 53 43 45 36 30 2D 43 43 30 38 31 2D 46 C2 Giesecke & Devrient StarSign USB Token 3B FD 18 00 00 81 31 FE 45 80 31 80 65 40 90 7B 01 51 83 07 90 00 55 Croatian Health Care card 3B FD 18 00 00 81 31 FE 45 80 31 81 53 47 45 31 73 84 21 C0 81 07 2E Georgian ID Card 3B FD 18 00 FF 80 B1 FE 45 1F 07 80 73 00 21 13 57 4A 54 48 61 31 47 00 5F Activkey Sim http://www.actividentity.com/products/activkey_usb_tokens__home.php 3B FD 18 00 FF 80 B1 FE 45 1F 07 80 73 00 21 13 57 4A 54 48 61 31 48 00 50 G&D Sm@rtCafe Expert 64 v2 3B FD 18 00 FF 80 B1 FE 45 1F 07 80 73 00 21 13 57 4A 54 48 61 31 4A 00 52 e-CPF issued by AASP (Lawyers Association of São Paulo, Brazil) 3B FD 18 00 FF 81 31 FE 45 43 49 42 47 55 5A 49 4A 32 41 30 38 31 58 Caregiver card for Dutch Medical System called UZI (Unieke Zorgverlener Identificatie, Caring Unique Identification) 3B FD 91 00 FF 91 81 71 FE 40 00 41 20 00 41 00 81 80 31 C0 73 D6 21 C0 D8 Sparkasse Hanau - German contactless GeldKarte (PPSE, girogo) https://www.geldkarte.de/_www/en/pub/geldkarte/service_navigation/about_us.php 3B FD 94 00 00 81 31 20 43 80 31 80 65 B0 83 02 04 7E 83 00 90 00 B6 GXPPRo-R3.x STD PTS T=1 Latvian Digital Signature Card (cold) http://www.eme.lv/ 3B FD 94 00 00 81 31 60 65 80 31 C0 69 4D 54 43 4F 53 73 01 01 11 E0 MTCOS Light http://www.masktech.de/products/mtcoslight/index.html 3B FD 96 00 00 81 31 20 43 80 31 80 65 B0 83 11 00 C8 83 00 90 00 15 Gemalto TOP IM GX4 MSA081, T=1 (PKI) 3B FD 96 00 00 81 31 20 43 80 31 80 65 B0 83 11 48 C8 83 00 90 00 Pay TV 3B FD 96 00 00 81 31 FE 45 00 00 01 52 33 29 80 00 00 00 00 00 00 A9 DPI Guatemala (eID) http://www.renap.gob.gt/ 3B FE 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 31 20 4C 4F 54 20 57 B1 LOT test card (JavaCard) www.lotgroup.eu 3B FE 18 00 00 80 31 FE 45 45 73 74 45 49 44 20 76 65 72 20 31 2E 30 A8 Estonian Identity Card (EstEID 3.0 "JavaCard" cold) 3B FE 18 00 00 80 31 FE 45 53 43 45 36 30 2D 43 44 30 38 31 2D 6E 46 A9 G&D Sm@rtCafé Expert 6.0 (JavaCard) http://www.smartcardfocus.com/shop/ilp/id~684/smartcafe-expert-6-0-80k-dual-/p/index.shtml 3B FE 18 00 00 80 31 FE 45 80 31 80 66 40 90 A4 16 2A 00 83 01 90 00 E1 Estonian Identity Card (EstEID 3.0 "JavaCard" warm) 3B FE 18 00 00 80 31 FE 45 80 31 80 66 40 90 A4 16 2A 00 83 0F 90 00 EF iEstonian Identity Card (EstEID 3.0 (18.01.2011) warm) 3B FE 18 00 00 80 31 FE 45 80 31 80 66 40 90 A5 10 2E 10 83 01 90 00 F2 Infineon CJTOP 80K INF SLJ 52GLA080AL M8.4 (JavaCard) 3B FE 18 00 00 81 31 FE 45 80 31 81 54 48 53 4D 31 73 80 21 40 81 07 FA Smartcard-HSM http://www.cardcontact.de/products/sc-hsm.html 3B FE 91 00 FF 91 81 71 FE 40 00 41 28 00 01 80 81 00 73 C8 40 00 00 90 00 4D Philips SmartMX chip (IBMs JCOP OS) 3B FE 91 00 FF 91 81 71 FE 40 00 41 28 00 11 33 B0 4A 43 4F 50 33 31 56 32 C4 JCOP31 72K dual interface functionality, 1K Mifare emulation. 3B FE 91 00 FF 91 81 71 FE 40 00 41 38 00 21 80 71 80 66 B0 07 01 01 07 07 B7 Java Gemalto R7 (contactless) (Bank) 3B FE 91 00 FF 91 81 71 FE 40 00 41 38 00 21 80 81 80 65 A2 01 02 01 31 72 10 Santander TUI Brazil (Bank) http://www.santanderuniversidades.com.br/Paginas/home.aspx 3B FE 91 00 FF 91 81 71 FE 40 00 41 38 00 21 80 81 80 66 B0 07 01 01 77 07 B7 Java Gemalto R5 (contactless) (Bank) 3B FE 94 00 00 80 1F 42 80 31 80 66 47 50 20 45 83 01 83 01 90 00 02 TATA Docomo UICC (Telecommunication) http://www.tatadocomo.com/ 3B FE 94 00 FF 80 B1 FA 45 1F 03 45 73 74 45 49 44 20 76 65 72 20 31 2E 30 43 Estonian Identity Card (EstEID v1.0 cold) Estonian Identity Card (EstEID v1.1 "MULTOS" warm) 3B FE 96 00 FF C0 0A 31 FE 4D 45 73 74 45 49 44 20 76 65 72 20 31 2E 30 9B Estonian Identity Card (EstEID v1.1 compatible) http://www.id.ee/?id=11019&&langchange=1 3B FF .. 00 00 81 31 .. 43 80 31 80 65 B0 .. .. .. .. 12 0F FE 82 90 00 .. IDPrime MD 8840, 3840, 3810, 840 and 830 Cards T=1 3B FF .. 00 FF 81 31 .. 45 65 63 .. .. .. .. .. .. .. .. .. .. .. .. .. .. Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ... 3B FF 00 00 FF 81 31 FE 45 80 25 A0 00 00 00 56 57 53 43 36 35 30 00 00 00 SafeNet SC650 3B FF 00 FF 81 31 .. 45 65 63 .. .. .. .. .. .. .. .. .. .. .. .. .. .. Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ... 3B FF 11 00 00 81 31 FE 4D 80 25 A0 00 00 00 56 57 44 4B 33 33 30 06 00 D0 Datakey 32K PKI Smart Card Model 330 http://www.datakey.com/products/smart_cards/products_sc_330.shtml 3B FF 11 00 00 81 71 40 42 00 00 21 01 31 42 52 00 0[0,5] 63 .. .. .. .. 90 00.* Smart Card "The Smart Way to Login" Used on Acer TravelMate to secure boot 3B FF 11 00 02 40 64 80 69 A2 07 01 03 57 00 00 FF 00 83 00 90 00 Gemplus GemXpresso 3B FF 13 00 00 81 31 FE 45 00 31 B9 64 04 44 EC C1 73 94 01 80 82 90 00 12 Croation personal ID card (eID) http://eid.hr/ 3B FF 13 00 00 81 31 FE 45 4F 57 4F 4B 31 30 2D 4A .. .. .. .. .. .. .. .. OWOK (One Web, One Key) login card http://www.reiner-sct.com/owok/ Reiner SCT loginCard https://cardlogin.reiner-sct.com/ 3B FF 13 00 00 81 31 FE 4D 80 25 A0 00 00 00 56 57 44 4B 33 33 30 06 00 D2 Datakey DCOS model 330 (DKCCOS 6.0 token) 3B FF 13 00 FF 10 80 80 31 E0 6B 07 14 05 02 8A 55 55 55 55 55 55 Tangerine Debit Card (Bank) https://www.tangerine.ca 3B FF 13 00 FF 10 80 80 31 E0 6B 08 24 05 02 B5 55 55 55 55 55 55 Tangerine Canada Interac debit card (Bank) https://www.tangerine.ca/ 3B FF 13 00 FF 80 31 FE 45 53 46 53 45 2D 43 58 33 32 32 2D 56 01 01 01 65 Portugal Santander Totta Universitários "Associação Academica de Coimbra" 3B FF 13 00 FF 80 31 FE 45 53 46 53 45 2D 43 58 33 32 32 2D 56 18 02 08 76 SmartCafe Expert Java 3B FF 13 00 FF 80 31 FE 45 53 46 53 45 2D 43 58 33 32 32 2D 56 18 03 08 77 Giesecke & Devrient SmartCafe Expert 32K v2.0 #2 3B FF 13 00 FF 81 31 FE 45 65 63 11 04 50 02 80 00 08 39 00 04 02 05 02 E9 German "Geldkarte" supplied by the Deutsche Bank in Karlsruhe, Baden-Württemberg, Germany. 3B FF 13 00 FF 81 31 FE 45 65 63 11 04 50 02 80 00 08 54 00 04 23 05 02 A5 Maestrocard/Geldkarte (Stadtsparkasse Haltern, Germany) 3B FF 13 00 FF 81 31 FE 5D 80 25 A0 00 00 00 56 57 44 4B 33 32 30 05 00 3F Datakey DCOS model 320 3B FF 14 00 FF 81 31 FE 45 80 25 A0 00 00 00 56 57 53 43 36 35 30 01 00 39 SafeNet SC650 (PKI) http://www.safenet-inc.com/data-protection/authentication/smartcard-650/ 3B FF 18 00 00 81 31 FE 45 00 6B 04 05 01 00 01 11 01 43 4E 53 10 31 80 69 Sanitary Card of "Friuli Venezia Giulia" region (Italian Republic) Carta Nazionale dei Servizi (Italia) http://cartaservizi.regione.fvg.it/ 3B FF 18 00 00 81 31 FE 45 00 6B 04 05 01 00 01 12 02 48 50 43 10 31 80 6C Carta del Professionista Sanitario - CNS - Provincia autonoma di Trento Professional Health card, Autonomous Province of Trento 3B FF 18 00 00 81 31 FE 45 00 6B 04 05 01 00 01 21 01 43 49 45 10 31 80 48 hybrid card for various health services and regional services (access to various organizations and digital signatures) 3B FF 18 00 00 81 31 FE 45 00 6B 04 05 01 00 01 21 01 43 4E 53 10 31 80 59 CNS - Carta Nazionale dei Servizi (Italia) PA emittente: Regione Autonoma della Sardegna Carta del Servizio Sanitario Regionale - Emilia Romagna 3B FF 18 00 00 81 31 FE 45 00 6B 11 05 07 00 01 21 01 43 4E 53 10 31 80 4A Oberthur ID-One Cosmo V7-n it's a java card 2.2.2 3B FF 18 00 00 81 31 FE 4D 80 25 A0 00 00 00 56 57 44 4B 34 30 30 06 00 DD DataKey 400 (DK400) 3B FF 18 00 FF 80 31 FE 45 53 46 53 45 2D 43 58 33 32 32 2D 56 18 03 08 7C Giesecke & Devrient Sm@rtCafé Expert 2.0 3B FF 18 00 FF 80 31 FE 45 53 6D 40 72 74 43 61 66 65 45 78 70 65 72 74 65 Giesecke & Devrient SmartCafe 32K v1 3B FF 18 00 FF 81 31 .. 45 65 63 .. .. .. .. .. .. .. .. .. .. .. .. .. .. Geldkarte (generic ATR) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 00 26 00 04 10 09 Maestrocard/Geldkarte (Postbank, Germany) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 01 55 00 04 10 7B Volksbank VR-BankCard (GeldKarte) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 05 29 00 04 10 03 Geldkarte/HBCI(DDV-1) (Stadtsparkasse Vorpommern, Germany) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 07 88 00 04 10 A0 HBCI-Karte (Berliner Sparkasse, Germany) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 13 82 00 04 10 BE Bremer Karte ("Geldkarte und BSAG-Kundenkarte in einem.") http://www.bsag.de/4911.php 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 14 06 00 04 10 3D Geldkarte/HBCI(DDV-1) (Staedtische Sparkasse Offenbach, Germany) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 14 44 00 04 10 7F Geldkarte/HBCI (Kreissparkasse Ebersberg, Deutschland) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 50 00 10 90 55 70 00 04 10 0A EC-Card from DKB (Deutsche Kreditbank AG) 3B FF 18 00 FF 81 31 3C 45 65 63 0D 02 31 02 80 00 12 24 30 00 20 04 10 59 Geldkarte (Germany) 3B FF 18 00 FF 81 31 50 45 65 63 .. .. .. .. .. .. .. .. .. .. .. .. .. .. GeldKarte v3 (Germany) 3B FF 18 00 FF 81 31 FE 45 54 48 43 43 31 30 54 45 43 4F 47 44 49 4E 31 26 National Health Insurance Card, Taiwan 3B FF 18 00 FF 81 31 FE 45 65 63 0D 04 50 02 80 00 08 90 09 70 00 05 00 2A Landesbank baden-Württemberg Geldkarte 3B FF 18 00 FF 81 31 FE 45 65 63 0D 07 63 05 28 00 0D 90 81 06 00 06 15 58 Geldkarte/HBCI (Frankfurter Sparkasse, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 0D 07 63 07 64 00 0D .. .. .. .. 06 15 .. Giesecke & Devrient GmbH ROM Mask=ecD6.3 Init-Table=SDP2G3F0.E_2 (BES0), SWP2G3H0.E_1 (CS0) Signaturerstellungseinheit ZKA TUVIT.93125.TU.12.2005 Banking Signature Card, v6.32, Type 3 TUVIT.93125.TU.12.2005 3B FF 18 00 FF 81 31 FE 45 65 63 0D 07 63 07 64 00 0D .. .. .. .. 06 15 .. Giesecke & Devrient GmbH ROM Mask=SDP2G330.E_1 (BES0), SWP2G370.E_1 (CS0) Init-Table=ecD6.3 Signaturerstellungseinheit ZKA TUVIT.09397.TU.03.2005 Banking Signature Card, v6.31 NP, Type 3 TUVIT.09397.TU.03.2005 3B FF 18 00 FF 81 31 FE 45 65 63 0D 07 63 07 64 00 0D 90 58 45 00 06 15 8C Stadtsparkasse München electronic cash card / Geldkarte 3B FF 18 00 FF 81 31 FE 45 65 63 0D 07 63 07 64 00 0D 90 73 07 00 06 15 E5 Sparkasse Acchen HBCI Geld Karte 3B FF 18 00 FF 81 31 FE 45 65 63 0D 07 63 07 64 00 0D 90 74 32 00 06 15 D7 German HBCI-Banking Card with 'Geldkarte' from the bank "Sparkasse Marburg-Biedenkopf" 3B FF 18 00 FF 81 31 FE 45 65 63 0D 07 63 07 64 00 0D 90 92 61 00 06 15 62 Geldkarte (Frankfurter Sparkasse, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 0D 08 65 07 64 00 0D .. .. .. .. 06 16 .. Giesecke & Devrient GmbH ROM Mask=ecD6.5 Init-Table=SWP3G5J0.E_1 (CS0) Signaturerstellungseinheit ZKA Banking Signature Card, v6.51 TUVIT.93129.TU.03.2006 3B FF 18 00 FF 81 31 FE 45 65 63 0D 08 65 07 64 00 0D 91 04 90 00 06 16 0E German Railway's (Deutsche Bahn AG) "Konzernausweis" 3B FF 18 00 FF 81 31 FE 45 65 63 0D 0C 76 07 64 00 0D 95 81 20 00 07 30 0F Master Card Credit Card issued by WGZ bank (all german volksbank institutes use them) 3B FF 18 00 FF 81 31 FE 45 65 63 0D 0C 76 07 64 00 0D 96 03 61 00 07 30 CF VR-Networld-Card with SECCOS-chip / Volksbank eG Konstanz for Online-Banking (FinTS / HBCI-3.0 + EBICS; RD 01/12 NetWorld) 3B FF 18 00 FF 81 31 FE 45 65 63 11 03 50 02 80 00 08 27 70 02 06 05 01 8A old banking card (electronic-card / Maestro / Geldkarte) of the "Volksbank Gelderland eG" (around 2003) 3B FF 18 00 FF 81 31 FE 45 65 63 11 05 40 02 50 00 10 55 10 03 03 05 00 43 belongs to a banking card (electronic-card / Maestro / Geldkarte). the bank calls it "VR-BankCard". the banks name is "Volksbank Gelderland eG" and is part of the "Volksbanken und Raiffeisenbanken" http://www.vb-gelderland.de/html/5/2394/rubrik/1282.html 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 40 02 50 00 10 .. .. .. .. 05 00 .. Gemplus-mids GmbH, ROM Mask=ZKA 322 V5A, Init-Table=SWI1P070.E_0 (CS0),SDI1P080.E_1 (BES0), Signaturerstellungseinheit ZKASignaturkarte v5.02, TUVIT.09385.TU.09.2004 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 40 02 50 00 10 05 50 03 10 05 00 43 HBCI-Karte (Bordesholmer Sparkasse, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 40 02 50 00 10 19 10 04 20 05 00 28 Stadtsparkasse München HBCI card / Geldkarte 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 40 02 50 00 10 25 60 05 12 05 00 57 Geldkarte/HBCI(DDV-1) (Stadtsparkasse Vorpommern, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 40 02 50 00 10 27 30 02 16 05 00 06 GeldKarte from Sparkasse bank 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 40 02 50 00 10 27 80 03 25 05 00 84 Volksbank VR-BankCard (GeldKarte) 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 40 02 50 00 10 28 50 01 11 05 00 6D HBCI Bancing Card of Sparkasse Pforzheim 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 62 02 80 00 11 .. .. .. .. 06 13 .. Giesecke & Devrient GmbH ROM Mask=ecD6.2, Init-Table=SDI1G280.E_1 (BES0), Signaturerstellungseinheit ZKA Banking Signature Card, v6.2b NP & 6.2f NP, Type 3 TUVIT.09395.TU.01.2005 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 62 02 80 00 11 06 60 03 04 06 13 87 Geldkarte (Volksbank Offenburg, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 62 02 80 00 11 16 50 05 17 06 13 B2 FinTS (BBBank Karlsruhe, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 62 02 80 00 11 20 90 03 09 06 13 5C Geldkarte [ec, Maestro] (1822 direkt Frankfurter Sparkasse, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 11 06 62 02 80 00 11 43 50 01 17 06 13 E3 EC-Card of Sparkasse Pforzheim Calw 3B FF 18 00 FF 81 31 FE 45 65 63 11 07 51 02 50 00 10 72 80 00 02 06 20 C6 Maestro Card Deutsche Kredit Bank (DKB) / Germany 3B FF 18 00 FF 81 31 FE 45 65 63 11 07 64 02 80 00 11 .. .. .. .. 06 19 .. Giesecke & Devrient GmbH ROM Mask=ecD6.4 Init-Table=SDI2G4G0.E_4 (BES0), SWI2G4H0.E_2 (CS0) Signaturerstellungseinheit ZKA 17.01.2006 Banking Signature Card, v6.4 TUVIT.93123.TU.01.2006 3B FF 18 00 FF 81 31 FE 45 65 63 11 08 43 02 50 00 10 .. .. .. .. 05 30 .. Gemalto ROM Mask=ZKA 680 V5A Init-Table=SSI3P3M6E_1 (MS0) Massen-Signaturerstellungseinheit ZKA Banking Signature Card, Version 5.11M TUVIT.93148.TU.06.2007 3B FF 18 00 FF 81 31 FE 45 65 63 11 08 43 02 50 00 10 46 50 01 08 05 30 27 HBCI-Karte (Sparkasse Altmark-West, Salzwedel, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 11 08 43 02 50 00 10 84 70 01 04 05 30 C9 HBCI Card (1822 direkt Frankfurter Sparkasse, Germany) Geldkarte [ec, Maestro] 3B FF 18 00 FF 81 31 FE 45 65 63 11 08 66 02 80 00 11 .. .. .. .. 06 20 .. Giesecke & Devrient GmbH ROM Mask=ecD6.6 Init-Table=SDI3G6G0.E_3 (BES0), SSI3G6M0.E_2 (S0), SWI3G6H0.E_3 (CS0) Signaturerstellungseinheit ZKA Banking Signature Card, Version 6.6 TUVIT.93130.TU.05.2006 - 2. Nachbestätigung 3B FF 18 00 FF 81 31 FE 45 65 63 11 08 66 02 80 00 11 40 50 03 18 06 20 D4 banking card (electronic-card / Maestro / Geldkarte). the bank+calls it "S-Card" or "Sparkassen-Card". the banks name is "Stadtsparkasse Duesseldorf" and is part of the "Sparkassen-Finanzgruppe" (a finance group, network of local banks). 3B FF 18 00 FF 81 31 FE 45 65 63 11 08 66 02 80 00 11 56 00 03 18 06 20 92 Geldkarte [ec, Maestro] (Sparkasse Langen-Seligenstadt, Germany) 3B FF 18 00 FF 81 31 FE 45 65 63 19 01 50 02 80 00 0F .. .. .. .. 05 12 .. SAGEM ORGA GmbH ROM Mask=SecV1.5.3 Init-Table=SDR0O1G0.A_B (BES0), SWR0O1H0.A_5 (CS0) Signaturerstellungseinheit ZKA SECCOS Sig v1.5.3 BSI.02076.TE.12.2006 3B FF 18 00 FF 81 31 FE 45 65 63 1A 01 41 02 50 00 10 52 09 05 67 05 10 21 Maestro/Geldkarte (BBBank Karlsruhe, Germany) 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 02 00 01 01 01 43 4E 53 10 31 80 9F Carta Nazionale dei Servizi - InfoCamere 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 02 00 01 01 01 44 53 44 10 31 80 92 Postcom S.P.A. (digital certificate) 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 02 00 01 11 01 43 4E 53 10 31 80 8F Carta Regionale dei Servizi - Regione Lombardia 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 02 00 01 11 01 43 4E 53 11 31 80 8E Infocamere CNS 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 03 00 01 11 01 43 4E 53 11 31 80 8F Card description: Multiservice Card - CMCC - Arma Carabinieri (Carta Multiservizi) 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 03 03 01 01 01 43 4E 53 10 31 80 9D Aruba CNS for Regione Toscana (IT) http://www.regione.toscana.it Aruba CNS for Infocamere (the Chambers of Commerce) 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 03 03 01 01 01 44 53 44 10 31 80 90 Postecert (www.postecert.it) to legally sign documents 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 03 03 01 11 01 43 4E 53 11 31 80 8C Infocert 1205* smart card Universita' Degli Studi di Torino (Infocert) 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 13 01 01 11 01 43 4E 53 11 31 80 9E Service card of the Ministry of Defense of Italy - Navy 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 13 03 01 00 01 50 53 45 10 31 80 94 Italian Electronic ID Card (eID) http://www.interno.gov.it/mininterno/site/it/temi/servizi_demografici/scheda_006.html 3B FF 18 00 FF 81 31 FE 55 00 6B 02 09 13 03 01 11 01 43 4E 53 11 31 80 9C Politecnico di Torino Student Card (eID) http://www.polito.it/ 3B FF 18 00 FF C1 0A 31 FE 55 00 6B 05 08 C8 05 01 11 01 43 4E 53 10 31 80 0C Carta Regionale dei Servizi - Regione Lombardia 3B FF 18 00 FF C1 0A 31 FE 55 00 6B 05 08 C8 09 01 11 01 43 4E 53 10 31 80 00 Carta regionale dei servizi - Regione Sicilia http://www.regione.sicilia.it/crs/index.asp 3B FF 18 00 FF C1 0A 31 FE 55 00 6B 05 08 C8 0A 01 11 01 43 4E 53 10 31 80 03 Carta Regionale dei Servizi - Regione Lombardia 3B FF 18 00 FF C1 0A 31 FE 55 00 6B 05 08 C8 0C 01 11 01 43 4E 53 10 31 80 05 Healthcare card (TS-CNS) - Provincia Autonoma di Trento Unified Healthcare card (TS-CNS) - Repubblica Italiana 3B FF 32 00 00 10 80 80 31 E0 5B 47 42 50 00 00 00 00 00 00 02 55 UK NatWest BT PayToView Mondex 3B FF 91 00 FF 91 81 71 FC 40 00 0A 65 4B 54 50 30 44 32 65 4B 54 50 04 3D 5B 62 Indonesian eID (eID) 3B FF 94 00 00 00 43 4D 42 5F 55 42 53 69 67 6E 30 30 30 32 15 UBS Access Card used for online banking with UBS in Switzerland. It resides in a calculator like token, that is used for a challenge response when logging in. 3B FF 94 00 00 40 0A 80 31 00 73 12 21 13 57 4A 33 0E 01 31 41 00 O2 Loop SIM card 3B FF 94 00 00 40 0A 80 31 00 73 12 21 13 57 4A 33 0E 02 32 41 00 Turkcell SIMPlus64 / Turkey 3B FF 94 00 00 81 31 80 43 80 31 80 65 B0 85 02 01 F3 12 0F FF 82 90 00 79 Serbian Identity Card (eID) Java Card (Sealys MultiApp ID v2.1) supporting Global Platform 2.1.1 3B FF 94 00 00 C0 0A B1 FE 49 1F 43 80 31 E0 73 F6 21 13 57 34 36 43 41 32 30 20 68 Sonera UICC (Telecommunication) 3B FF 94 00 FF 40 0A 80 31 00 73 12 21 13 57 4A 33 20 09 31 41 00 Globul GSM operator card (Bulgaria) (Telecommunication) 3B FF 94 00 FF 80 B1 FE 45 1F 03 00 68 D2 76 00 00 28 FE 05 22 31 80 00 90 00 1E Alice Business card (to be used in the modem supplied by an Italian provider) 3B FF 94 00 FF 80 B1 FE 45 1F 03 00 68 D2 76 00 00 28 FF 05 1E 31 80 00 90 00 23 D-Trust Signature Card (www.d-trust.net): - Citizencard of the People of Ulm in Germany (Bürgerkarte) - Qualified Electronic Signature Card (Qualifizierte Signaturkarte) 3B FF 94 00 FF C0 0A 1F 43 80 31 E0 73 36 21 13 57 4A 43 49 1C 31 30 32 1C Giesecke & Devrient - UniverSIM Pegasus 3B FF 95 00 00 C0 0A 1F 43 80 31 E0 73 36 21 13 57 4A 33 0E 02 31 41 00 88 "BASE" SIM card; BASE is a german mobile phone operator, which is a brand of E-Plus, Germany. 3B FF 95 00 FF 40 0A 80 31 00 73 1A 21 13 57 4A 50 48 60 31 41 47 Vodafone 64 KB SIM with Javacard 3B FF 95 00 FF 40 0A 80 31 E8 73 F6 21 13 67 4A 47 48 60 31 42 00 Giesecke & Devrient STARSIM 3B FF 95 00 FF 50 80 1C 44 4E 41 53 50 34 30 30 20 52 65 76 49 34 41 Pay TV - NC+ in Poland (Pay TV) http://ncplus.pl/ 3B FF 95 00 FF C0 0A 1F 43 80 31 E0 73 36 21 13 57 4A 33 20 07 33 41 41 1F Swisscom 3G SIM card 3B FF 95 00 FF C0 0A 1F 43 80 31 E0 73 F6 21 13 57 4A 33 48 57 31 41 41 E5 MTNL 3G USIM (India) 3B FF 95 00 FF C0 0A 1F 43 80 31 E0 73 F6 21 13 57 4A 33 48 61 32 41 47 D6 GSM SIM (issued by e-plus, Germany) 3B FF 95 00 FF C0 0A 1F 43 80 31 E0 73 F6 21 13 57 4A 55 48 60 32 41 00 F6 GSM SIM from O2 Germany (UMTS ready) from 2005 3B FF 95 00 FF C0 0A 1F 47 80 31 E0 73 F6 21 13 57 4A 33 20 0B 31 41 41 D5 Telenor SIM card (Norway) 3B FF 96 00 FF 81 31 FE 45 65 63 0D 09 71 07 64 00 0D 00 03 54 50 07 01 81 Commerzbank ServiceCard / Maestro / GeldKarte / Cirrus / girocard / CashGroup / electronic cash 3B FF 96 00 FF 81 31 FE 45 65 63 19 01 50 02 80 00 0F 00 2B 00 46 50 11 72 Sparkasse Bremen Germany HBCI DDV 3B FF 96 00 FF 81 31 FE 45 65 63 19 01 50 02 80 00 0F 00 2F 00 25 50 11 15 German Postbank Giro card with electronic cash, Maestro, GeldKarte features 3B FF 96 00 FF 81 31 FE 4D 80 31 E0 6B 04 31 05 02 77 55 55 55 55 55 55 EA IRMA card (eID) http://irmacard.org 3B FF 96 00 FF C0 0A 1F 43 80 31 E0 73 36 21 13 57 4A 43 49 1C 31 30 32 1E Giesecke & Devrient - UniverSIM Pegasus 3F 05 DC 20 FC 00 01 DigiCash Facility Card 3F 28 00 00 11 14 00 03 68 90 00 SIMEMU - a DIY GSM SIM card http://simemu.cjb.net/ 3F 2D 00 27 A0 51 82 7D 00 00 00 52 00 0C 90 00 Porta Moedas Multibanco (Portugeese electronic purse) 3F 2F 00 80 59 AF 02 01 01 30 00 00 0A 0E 83 06 9F 12 Gemplus GemXplore 3F 2F 00 80 59 AF 02 01 02 30 00 0C 0A 0E 83 1E 9F 16 GSM-SIM (900MHz) card of the carrier "Mannesmann Mobilfunk" for their network "D2-Privat" - now known as Vodafone Mobilfunk http://www.vodafone.de/ 3F 2F 00 80 69 AE 02 02 01 36 00 00 0A 0E 83 3E 9F 16 GSM-SIM e-plus (1800MHz) 3F 2F 00 80 69 AF 02 04 01 36 00 02 0A 0E 83 3E 9F 16 GSM-SIM D2 CallYa (900MHz) 3F 2F 00 80 69 AF 03 07 01 59 00 00 0A 0E 83 3E 9F 16 Nokia SIM Ph2 16K Ver2.0 3F 2F 00 80 69 AF 03 07 01 59 00 13 0A 0E 83 3E 9F 16 Old Spanish Telefónica Movistar GSM SIM card manufactured by Gemplus 3F 2F 00 80 69 AF 03 07 03 52 00 00 0A 0E 83 3E 9F 16 GemXplore 98 V1 16K 3F 2F 00 80 69 AF 03 07 03 52 00 0D 0A 0E 83 3E 9F 16 GSM-SIM Debitel D2 (900MHz) 3F 2F 00 80 69 AF 03 07 03 5A 00 15 0A 0E 83 3E 9F 16 Virgin Mobile SIM (Gemplus) 3F 3D 11 00 80 67 28 50 04 02 20 00 00 83 8E 90 00 GSM SIM card of the Austrian provider A1 3F 3E 11 00 46 52 45 43 43 49 41 52 4F 53 53 41 90 00 Trenitalia (Italy) fidelity card "CartaFreccia" (Smartcard) 3F 3F 94 00 80 69 AF 03 07 01 59 00 00 0A 0E 83 3E 9F 16 Finnish SIM card from "Radiolinja" now "Elisa" 3F 65 25 .. .. 04 6C 90 .0 Carte Bancaire (French banking card) 3F 65 25 00 2B 09 62 90 00 Coinamatic SmartyCity smartcard 3F 65 25 00 2B 09 69 90 00 Municipal parking meter card for the City of St. John's, NL, Canada. http://www.stjohns.ca/index.jsp 3F 65 25 00 2B 09 EB 90 00 Bull Scot 5 3F 65 25 00 2[2,C] 09 [F,6]9 90 00 Sesam Vitale (French health card) 3F 65 25 00 52 09 6A 90 00 French carte Vitale 3F 65 25 00 A[3,4] 09 6A 90 00 Sesam Vitale (French health card) 3F 65 25 08 22 04 68 90 00 France Telecom card (ex Pastel card) 3F 65 25 08 23 04 68 90 00 France Telecom card 3F 65 25 08 33 04 20 90 00 D-Trust card 3F 65 25 08 43 04 6C 90 00 CB visa La Poste France (Oberthur) CB visa Societe Generale France (Oberthur) 3F 65 25 08 63 04 6C 90 00 CB visa La Poste France (Oberthur) CB Master Carte du Crédit Mutuel 3F 65 25 08 65 04 6C 90 00 CB visa Boursorama France (Axalto) 3F 65 35 10 0. 04 6C 90 00 Postcard (Switzerland) 3F 65 35 64 02 04 6C 90 40 Postcard (Switzerland) 3F 67 25 00 21 20 00 0F 68 90 00 Smart Builder "your kit for PC/SC applications" and Bull http://www.cp8.bull.net/ 3F 67 25 00 21 20 00 0F 78 90 00 Bank Nederlandse Gemeenten, BNG Data Services 3F 67 25 00 26 14 00 20 68 90 00 Pay-TV card from Casema Cable Television, Netherland 3F 67 25 00 2A 20 00 0F 68 90 00 Carte Grand Voyageur (SNCF: French train company) 3F 67 25 00 2A 20 00 40 68 9F 00 Swiss Cash card Chipknip SNS Bank (banking card) 3F 67 25 00 2A 20 00 41 68 90 00 ChipKnip 3F 67 25 00 2A 20 00 4[0,1] 68 90 00 Dutch ChipKnip, Proton (chip Bull CC 60 V1, Bull CC 60 V2 or Bull CC 1000) 3F 67 25 04 21 20 00 07 68 90 00 Philips TB100 (C-MOS chip) 3F 67 2F 00 11 14 00 03 68 90 00 D2MAC/Eurocrypt (Pay TV) 3F 67 2F 04 11 20 00 00 68 90 00 BULL HN ITALIA 06/92 - 100.000 - 64MP La Sapienza - Universita' di Roma 3F 69 00 00 24 AF 01 70 01 01 FF 90 00 French GSM SIM card (900MHz) 3F 6A 00 00 00 64 01 50 01 0C 82 01 01 A9 Credit Card café Selecta 3F 6C 00 00 24 A0 30 00 FF 00 00 01 00 04 90 00 Gemplus MCOS 16K DES Sample Card 3F 6C 00 00 25 A0 30 89 76 00 00 04 01 0C 90 00 MCOS 24k EEPROM 3F 6C 00 00 3C A0 30 9E 61 00 00 01 00 04 90 00 Gemplus - British Gas - Gascard 3F 6C 00 00 3C A0 30 A7 58 00 00 01 01 8C 90 00 Rendezvous Series 7 (D2-Mac satellite TV card) 3F 6C 00 00 3D A0 30 BE 41 00 37 01 00 04 90 00 Sberbank (Bank) 3F 6D 00 00 80 31 80 65 B0 05 01 02 5E 83 00 90 00 Gemplus GemXpresso 211PK or 211PK-IS 3F 6D 00 00 80 31 80 65 B0 05 01 02 5E 92 00 90 00 Gemplus GemXpresso 32K 3F 77 18 00 00 C1 14 00 A2 68 90 00 Viacess card HRT (Hrvatska Radio Televizija) 3F 77 18 00 00 C1 14 01 A2 68 90 00 VIA 2.6 XXX (Pay TV) 3F 77 18 00 00 C2 14 00 C1 68 90 00 Viaccess Sexview 3F 77 18 00 00 C2 47 40 00 68 90 00 Viacces card: SRG SSR idèe suisse 3F 77 18 00 00 C2 7A 41 02 68 90 00 Viacces card: SRG SSR idée suisse 3F 77 18 00 00 C2 7A 42 02 68 90 00 SCT (Via Access) 3F 77 18 00 00 C2 7A 43 02 68 90 00 DORCEL (Via Access) 3F 77 18 00 00 C2 7A 44 02 68 90 00 XXX Redlight_HD (Viaccess) 3F 77 18 00 00 C2 EB 41 02 6C 90 00 Elite HD10+ (Pay TV) Sattelite cryptoworks card - Smart card Viaccess (Telesat - belgium) (Pay TV) 3F 77 18 00 00 C2 EB 45 02 6C 90 00 facetv (Other) 3F 77 18 25 00 29 14 00 62 68 90 00 Viaccess card 3F 78 12 25 01 40 B0 03 4A 50 20 48 55 DSS/DTV H 3F 78 13 25 03 40 B0 20 FF FF 4A 50 00 DSS/DTV P4 3F 7E 11 25 05 40 B0 08 00 00 4D 59 00 00 00 53 4B 0B 07 BSkyB Series 11 (DSS satellite TV card) 3F 7E 11 25 05 40 B0 08 00 00 4D 59 00 00 00 53 4B 0B 08 Sky Series 11 (DSS satellite TV card) 3F 7E 11 25 09 40 B0 01 00 00 4D 59 00 00 03 53 4B 0A 01 Sky Series 10 (DSS satellite TV card) 3F 7F 11 25 03 33 B0 09 69 FF 4A 50 70 00 00 56 54 01 00 00 Viasat Baltic (satellite card, NDS) 3F 7F 11 25 05 40 B0 0F 69 FF 4D 59 00 00 00 53 4B 0C 06 00 Sky Series 12 (DSS satellite TV card) 3F 7F 13 25 01 40 B0 10 69 FF 4A 50 01 47 4C 00 00 00 00 00 NDS Smartcard (Pay TV) 3F 7F 13 25 02 40 B0 0C 69 FF 4A 50 C0 00 00 52 53 00 00 00 Stream Italy NDS 1 (Pay TV) 3F 7F 13 25 02 40 B0 12 69 FF 4A 50 90 54 56 00 00 00 00 00 NDS Smartcard (Pay TV) 3F 7F 13 25 03 33 B0 06 69 FF 4A 50 D0 00 00 53 59 00 00 00 Sky 2005/6 (DSS satellite TV card) 3F 7F 13 25 03 33 B0 11 69 FF 4A 50 50 00 00 49 56 01 00 00 Indonesia Videoguard 2 card 3F 7F 13 25 03 38 B0 04 FF FF 4A 50 00 00 29 48 55 .. .. .. DSS/DTV HU 3F 7F 13 25 03 40 B0 0B 69 4C 4A 50 C0 00 00 53 59 00 00 00 Sky Digital (DSS satellite TV card) 3F 7F 13 25 05 40 B0 11 69 FF 4A 50 00 00 00 47 54 00 0C 00 YES DBS Israel Videoguard 090C,090D 3F 96 18 80 01 80 51 00 61 10 30 9F Atmel/Athena T0 Inverse Convention PC/SC Compliance Test Card No. 2 3F EF 00 FF 81 31 .. 45 65 63 Debit card (Germany): ec-cash, GeldKarte(DEM), Maestro, Cirrus 3F FD 11 25 02 50 80 0F 41 B0 0A 69 FF 4A 50 70 80 00 5A 45 03 Buypass smart card (Bank) https://www.buypass.no/bruker/buypass-id/buypass-smartkort 3F FD 13 25 02 50 00 0F 33 B0 0F 69 FF 4A 50 D0 00 00 53 59 02 Sky Digital (DSS satellite TV card) 2009 issue 3F FD 13 25 02 50 00 0F 33 B0 16 69 FF 4A 50 D0 80 00 53 59 03 Sky TV Multiroom (Pay TV) 3F FD 13 25 02 50 80 0F .. B0 .. 69 FF 4A 50 D0 80 00 49 54 03 Sky (Italy) VideoGuard CAM card 3F FD 13 25 02 50 80 0F 33 B0 08 FF FF 4A 50 90 00 00 47 4C 01 Sky (Brasil) VideoGuard CAM card 3F FD 13 25 02 50 80 0F 41 B0 0A 69 FF 4A 50 F0 00 00 50 31 03 Sky Germany V14 NDS card (Pay TV) http://www.wikipedia.org/wiki/Sky_Deutschland 3F FD 14 25 01 50 00 0F 33 B0 0B FF FF 4A 50 80 00 00 47 58 01 DirecTV card 3F FD 15 25 02 50 80 0F 41 B0 05 69 FF 4A 50 F0 00 00 41 5A 03 astro Pay TV Measat 91.5 E Caid: 0910 Provider: 000000 3F FD 15 25 02 50 80 0F 41 B0 0A 69 FF 4A 50 F0 00 00 50 31 03 Sky Germany [NDS|V14] (098C:000000) (Pay TV) 3F FD 15 25 02 50 80 0F 41 B0 0D 69 FF 4A 50 F0 80 00 41 4A 03 beIN Sports Arabia NDS (09B5:000000) (Pay TV) 3F FD FF 25 02 50 80 0F 54 B0 04 69 FF 4A 50 D0 80 00 49 54 03 SKy italia (Pay TV) 3F FF 11 25 03 10 80 41 B0 06 69 FF 4A 50 70 00 00 41 5A 01 00 11 Astro (Pay TV) http://www.astro.com.my 3F FF 11 25 03 10 80 41 B0 07 69 FF 4A 50 70 00 00 50 31 01 00 11 Sky (Germany) VideoGuard CAM card (www.sky.de) 3F FF 13 25 02 50 80 0F 54 B0 03 FF FF 4A 50 80 00 00 00 00 47 4C 05 Sky (Brasil) VideoGuard CAM card 3F FF 13 25 03 10 80 33 B0 0E 69 FF 4A 50 70 00 00 49 54 02 00 00 Sky entitlement card 3F FF 13 25 03 10 80 33 B0 10 69 FF 4A 50 70 00 00 4E 5A 01 00 00 NDS SKY NZ (Pay TV) 3F FF 13 25 0B 50 00 0F 33 B0 04 69 FF 4A 50 E0 00 00 53 35 00 00 00 Stream TV (IP television) decoder card, provided by stream.ru ISP in Moscow 3F FF 13 25 0B 50 00 0F 33 B0 04 69 FF 4A 50 E0 00 00 54 38 00 00 00 Stream TV (IP television) decoder card, provided by aon (Telekom Austria) TV card, contains Incorporated NDS Videoguard (TM) security system 3F FF 14 25 03 10 80 33 B0 10 69 FF 4A 50 70 00 00 5A 45 01 00 00 Norwegian DVB-C provider Get (www.get.no). NDS Videoguard security card. 3F FF 14 25 03 10 80 41 B0 01 69 FF 4A 50 70 00 00 5A 48 01 00 00 "D-Smart" NDS from Turkie 3F FF 14 25 03 10 80 41 B0 01 69 FF 4A 50 70 00 00 5A 4A 01 00 00 Dolce by RomTelecom (Pay TV) 3F FF 14 25 03 10 80 41 B0 01 69 FF 4A 50 70 00 00 5A 4B 01 00 00 Pay TV, Viasat Ukraine 3F FF 14 25 03 10 80 41 B0 02 69 FF 4A 50 70 80 00 41 4F 01 00 14 Pay TV 3F FF 14 25 03 10 80 41 B0 07 69 FF 4A 50 70 80 00 58 45 01 00 14 Sat TV (Other) 3F FF 14 25 03 10 80 54 B0 01 69 FF 4A 50 70 00 00 4B 57 01 00 00 PayTV Card Kabel BW (www.kabelbw.de), Encryption: NDS by Videoguard, Distribution Standard: DVB-C 3F FF 3F 3F 3F 3F 00 3F 3F FF 3F 3F 3F 3F 3F FF 3F FF 95 3F FF 95 3F FF Premium joker card to see Spanish TDT premium (goltv) 3F FF 95 00 FF 91 81 71 .. 47 00 .. 4. 4. .. .. 3. 3. 3. 20 .. 65 7. .. .. .. .. Nagravision TV CAM card http://en.wikipedia.org/wiki/Nagravision 3F FF 95 00 FF 91 81 71 .. 47 00 4E 43 4D 45 44 3. 30 3. 20 52 65 76 .. 3. 3. .. Mediaset Premium (Italy) CAM card 3F FF 95 00 FF 91 81 71 64 47 00 44 4E 41 53 50 30 30 33 20 52 65 76 33 32 33 FF Satellite TV Card "Via Digital" (Nagra) 3F FF 95 00 FF 91 81 71 A0 47 00 44 4E 41 53 50 30 31 30 20 52 65 76 41 32 30 48 DSS/DISH ROM10 3F FF 95 00 FF 91 81 71 A0 47 00 44 4E 41 53 50 30 31 30 20 52 65 76 41 32 31 49 PayTV card for DishNetwork Sat receiver http://www.dishnetwork.com/ 3F FF 95 00 FF 91 81 71 A0 47 00 44 4E 41 53 50 30 31 31 20 52 65 76 42 NTL digial TV card (Nagravision) 3F FF 95 00 FF 91 81 71 A0 47 00 44 4E 41 53 50 30 31 31 20 52 65 76 42 30 36 4E Telewest Broadband (Nagravision) 3F FF 95 00 FF 91 81 71 A0 47 00 44 4E 41 53 50 30 31 31 20 52 65 76 42 30 42 3A NagraVision card for StarHub Digital Cable DVB-C Singapore 3F FF 95 00 FF 91 81 71 A0 47 00 44 4E 41 53 50 30 31 31 20 52 65 76 42 30 44 3C NagraVision card for Virgin Media in the UK 3F FF 95 00 FF 91 81 71 A0 47 00 44 4E 41 53 50 31 38 30 20 4D 65 72 30 30 30 28 NagraVision (VG04) for Virgin Media (UK) NagraVision 3 for DigiTV (Romania) http://www.rcs-rds.ro/televiziune-digi-tv/satelit 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 31 30 20 52 65 76 41 30 31 14 TVA Digital - Nagra Vision ID TV-01 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 31 30 20 52 65 76 41 30 37 12 UPC Austria/UPC-Cablecom Switzerland, digital television encryption card http://www.upc-cablecom.ch/ 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 31 30 20 52 65 76 41 32 32 15 UM01 card from German Unitymedia cable TV provider 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 31 30 20 52 65 76 41 34 35 14 Telenet N.V. HDTV Decoder Card Belgium 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 31 30 20 52 65 76 41 43 33 65 Brazilian NET Digital (Cable TV provider) - Nagra Vision "NASP110 RevA01" 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 30 32 16 Polsat Nagra3 Brazil - Claro TV Nagra3 Red 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 30 34 10 Nagra 3 Card - Telefonica Brazil Green 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 30 36 12 UM02 card from German Unitymedia cable TV provider 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 34 32 20 52 65 76 47 43 34 63 HD+ card used by the satelite company astra for decryption of the HDTV channels of RTL, VOX, Sat1 and ProSieben. Nagravision V3 is used for the encryption. 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 31 38 30 20 4D 65 72 4A 30 32 0E Nagra 3 Digital Plus Spain 3F FF 95 00 FF 91 81 71 FE 47 00 44 4E 41 53 50 32 34 31 20 44 73 68 DISH Network G3 (Pay TV) 3F FF 95 00 FF 91 81 71 FE 47 00 4E 43 4D 45 44 30 30 41 20 52 65 76 41 30 31 6C Mediaset Premium (Italy) 2013 3F FF 95 00 FF 91 81 71 FE 47 00 54 49 47 45 52 36 30 31 20 52 65 76 4D 38 30 13 Spanish pay TV card for GOLTV 3F FF 95 00 FF 91 81 71 FE 57 00 44 4E 41 53 50 34 31 30 20 52 65 76 51 32 35 17 New ROM of Nagra PayTV Card DNASP410 (Pay TV) http://en.wikipedia.org/wiki/Nagravision 3F FF 95 00 FF 91 81 71 FE 57 00 44 4E 41 53 50 34 31 30 20 52 65 76 51 32 42 60 Nagravision Kudelski Generation 7 card Rom410 MerQ2B (Pay TV) 3F FF 95 00 FF 91 81 71 FE 57 00 44 4E 41 53 50 35 35 32 20 44 73 68 4E 30 39 1F Dish Network ROM552 (Pay TV) 3F FF 95 00 FF 91 81 71 FF 47 00 44 4E 41 53 50 53 30 31 20 44 73 68 36 30 39 16 PayTV card for DishNetwork Sat receiver http://www.dishnetwork.com/ Cards were obsoleted in nationwide system update in 2009. 3F FF 95 00 FF 91 81 71 FF 47 00 54 49 47 45 52 30 30 33 20 52 65 76 32 35 30 64 Tivu' Sat (Italy) CAM card www.tivu.tv # do not delete pcsc-tools-1.4.25/Changelog0000644000175000017500000176436312617702130016024 0ustar rousseaurousseaucommit 179de1caee4984cc47bbc96b322664fb77a975ad (HEAD -> master, origin/master, origin/HEAD) Author: Ludovic Rousseau Date: Sun Nov 8 18:19:33 2015 +0100 Use Changelog instead of ChangeLog Makefile | 4 ++-- create_distrib.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) commit d5d90d7d55655d8332c3af92894a05d6f9fea6de (tag: pcsc-tools-1.4.25) Author: Ludovic Rousseau Date: Sun Nov 8 18:13:54 2015 +0100 Release 1.4.25 README | 4 ++++ 1 file changed, 4 insertions(+) commit ca2464ebf8806da32a435b9c3629f08eeba4105a Author: Ludovic Rousseau Date: Sun Nov 8 18:11:41 2015 +0100 Makefile: add a ChangeLog rule Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 5c97f44c8c42406b1dc83711aab88fa49c44ded2 Author: Ludovic Rousseau Date: Sun Nov 8 18:08:14 2015 +0100 4 new ATRs smartcard_list.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) commit c1c2ea10886b3bb41673fb885a65cbae12e2856c Author: Ludovic Rousseau Date: Sun Nov 8 18:06:12 2015 +0100 TODO: remove empty file TODO | 6 ------ 1 file changed, 6 deletions(-) commit 98b043657e21860feea4e99dd66d65372cb17233 Author: Ludovic Rousseau Date: Sun Nov 8 18:00:23 2015 +0100 ATR_analysis: correctly use wget to store the ATR list Using --output-file= correctly set the file time. But the content of the file is the log of the wget command not the content of the remote file. The code was completely broken. This change reverts a4165dbd2baca4588c4ac8b21bc40a6dc21c54d8 and add the missing touch(1) call. Closes Debian bug #804049: [pcsc-tools] Update of smartcard_list.txt is broken ATR_analysis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 7a62806675fc12f0cb30b4b238b6d0df21e331e4 Author: Ludovic Rousseau Date: Sun Nov 8 17:57:11 2015 +0100 Comments: Remove the $Id$ tag The $Id$ tag was used by subversion (svn) to indicate the file revision. This tag is now useless with git. ATR_analysis | 2 -- Makefile | 2 -- README | 2 -- gscriptor | 2 -- gscriptor.gtk1.2 | 2 -- pcsc_scan.c | 2 -- scriptor | 2 -- smartcard_list.txt | 2 -- 8 files changed, 16 deletions(-) commit c87bed6685691def67b159f4fc57ccee50d42636 Author: Ludovic Rousseau Date: Wed Oct 14 18:43:04 2015 +0200 10 new ATRs smartcard_list.txt | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) commit 2bca9aebb9899cecddbb78319190143708468004 Author: Ludovic Rousseau Date: Fri Sep 11 10:24:27 2015 +0200 Add .gitignore file Ignore generated files. .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) commit 1203ed381c1a3545e5fcb5d6b346bdd27883bcb9 Author: Ludovic Rousseau Date: Fri Sep 11 10:22:34 2015 +0200 13 new ATRs smartcard_list.txt | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) commit 274e373037ed9230de9262740a0e88c26a888c4e Author: Ludovic Rousseau Date: Tue Aug 25 19:54:54 2015 +0200 17 new ATRs smartcard_list.txt | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) commit 8286f6f1aaae46234a643c97013ef2503b8f3af5 (tag: pcsc-tools-1.4.24) Author: Ludovic Rousseau Date: Fri Aug 7 20:44:56 2015 +0200 Release 1.4.24 README | 4 ++++ 1 file changed, 4 insertions(+) commit b1c7e323697c0e1b12b6d138b2eb098b95c877d0 Author: Ludovic Rousseau Date: Fri Aug 7 20:44:00 2015 +0200 create_distrib.sh: update for git The repository moved from subversion to git. create_distrib.sh | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) commit 4c63e2a7b1c4af75622415438b612d84cceca743 Author: Ludovic Rousseau Date: Fri Aug 7 18:12:47 2015 +0200 13 new ATRs smartcard_list.txt | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) commit 974d4be1fb8771fb77427985a8f687fa162d2b03 Author: Ludovic Rousseau Date: Fri Aug 7 17:38:15 2015 +0200 sort_smartcard_list.py: check the ATR is all upper case If an ATR contains lower case letters then an error is reported. sort_smartcard_list.py | 4 ++++ 1 file changed, 4 insertions(+) commit 815d531589409e8cb33788194302a8960667e915 Author: Ludovic Rousseau Date: Tue Aug 4 17:54:03 2015 +0200 sync.sh: do not update the local ATR list The local ATR list should be updated by the automatic update mechanism. At least I should use my own code. sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a4165dbd2baca4588c4ac8b21bc40a6dc21c54d8 Author: Ludovic Rousseau Date: Tue Aug 4 11:05:45 2015 +0200 ATR_analysis: get the correct time for cache ATR list wget --output-document=foo will set the date (and time) of the file foo to the date of the remote file. But we want the file to have the date the wget was run and not the date the remote file was last updated. We new use get $url --output-file=foo Problem detected on Debian jessie (8.1) ATR_analysis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5e37873ce4ad2998632e03d5c767cac68b2f9516 Author: Ludovic Rousseau Date: Tue Aug 4 10:55:01 2015 +0200 ATR_analysis: update the ATR list if non present If no ATR list cache is present then it was not be updated. The ATR list automatic update did work only if a file ~/.cache/smartcard_list.txt was already present. ATR_analysis | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) commit dfa527cf03a73b876e3013c8c2ff2d18a82b8733 Author: Ludovic Rousseau Date: Mon Jul 27 21:27:34 2015 +0200 19 new ATRs smartcard_list.txt | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) commit 43f11e1af31c026de59326e4041e42bc36ba6c28 Author: Ludovic Rousseau Date: Thu Jul 2 17:44:53 2015 +0200 17 new ATRs smartcard_list.txt | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) commit cebc7e056583dd2f38d5246715eb34e07cb0fa8c Author: Ludovic Rousseau Date: Thu Jun 18 21:34:09 2015 +0200 10 new ATRs smartcard_list.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) commit c9fb8f1a0864e9d1735a4b6df17293630286abac Author: Ludovic Rousseau Date: Mon Jun 8 19:42:44 2015 +0200 13 new ATRs smartcard_list.txt | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) commit 127c497622bfcbf692f881afde5b237072ee3b3a Author: Ludovic Rousseau Date: Wed May 20 15:00:48 2015 +0200 10 new ATRs smartcard_list.txt | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) commit ecfbabda561cf69f4095cefe02ae7f34ceb0d231 Author: Ludovic Rousseau Date: Fri May 1 09:16:05 2015 +0200 10 new ATRs smartcard_list.txt | 45 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 4 deletions(-) commit 49ce00c410a41c54cc8a4fa6299f633ff05c0cf0 Author: Ludovic Rousseau Date: Wed Apr 15 08:42:09 2015 +0200 13 new ATRs smartcard_list.txt | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) commit fcc576d0200974048c8137a52d811f1f28fbd7ab Author: Ludovic Rousseau Date: Wed Mar 25 06:34:30 2015 +0000 15 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7106 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) commit 7de1998179e2a0373ad78cc17188460aae557e65 Author: Ludovic Rousseau Date: Thu Mar 5 17:43:35 2015 +0000 Document how to quit pcsc_scan git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7100 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.1 | 2 ++ 1 file changed, 2 insertions(+) commit 6d3929211cbcd2856bc6c72697c4eaddf973b20e Author: Ludovic Rousseau Date: Wed Feb 25 12:11:41 2015 +0000 11 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7097 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) commit 943a2bd027896a2248ad56f46ca1cc81ed52df68 Author: Ludovic Rousseau Date: Sat Feb 14 16:32:08 2015 +0000 11 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7093 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) commit 9ddd74d92ec8c2e7a9a6bc11c276fcf9b1c86e96 Author: Ludovic Rousseau Date: Sat Jan 31 17:42:18 2015 +0000 13 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7088 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) commit d0096ac8d501d1fcbf433a3b8a4a3bf83028c216 Author: Ludovic Rousseau Date: Mon Jan 19 19:32:59 2015 +0000 12 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7083 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) commit 040d93c01ab1b64fefdddacc1e616c2e34cf177b Author: Ludovic Rousseau Date: Tue Dec 30 21:36:17 2014 +0000 15 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7056 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 65 insertions(+), 2 deletions(-) commit fc62b687fde11a98ce4c97002254090bc592c896 Author: Ludovic Rousseau Date: Sun Nov 30 10:37:36 2014 +0000 24 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7048 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) commit efb9ea88725950e85028e08db5e7cc7587a98f62 Author: Ludovic Rousseau Date: Wed Nov 5 19:32:42 2014 +0000 10 new ATRS git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7025 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 43 +++++++++++++++++++++++++++++++++++++------ 1 file changed, 37 insertions(+), 6 deletions(-) commit 44f2c7df2b64557e11168194020ddc88cfbebe6d Author: Ludovic Rousseau Date: Sun Oct 26 16:24:23 2014 +0000 17 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7017 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 62 insertions(+), 2 deletions(-) commit a4ace816245f8552876f7440851b6788435acf1f Author: Ludovic Rousseau Date: Thu Oct 9 16:42:48 2014 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@7009 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) commit da04b8ddf7edd1b149cce1bbc47bbb2fd11b952b Author: Ludovic Rousseau Date: Wed Sep 24 07:27:13 2014 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6998 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) commit f28be7e1cf9cc6e2ba91bb7eb4688b2f032a4060 Author: Ludovic Rousseau Date: Thu Sep 18 12:52:37 2014 +0000 Use "\\?PnP?\Notification" reader only if supported Add the special reader "\\?PnP?\Notification" only if the Plug and Play feature is supported by the PC/SC layer (it is supported on GNU/Linux but not on Mac OS X). Thanks to Santiago Gimeno for the suggestion https://github.com/santigimeno/node-pcsclite/issues/14#issuecomment-56031963 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6992 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) commit e1e1880dfdfe753b641abc77f104a64e9f6cb7fc (tag: pcsc-tools-1.4.23) Author: Ludovic Rousseau Date: Sat Sep 13 12:45:21 2014 +0000 Release 1.4.23 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6981 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 3 +++ 1 file changed, 3 insertions(+) commit baf7598381aa321ec54083ad0c06912a24aea80a Author: Ludovic Rousseau Date: Thu Sep 11 17:46:21 2014 +0000 10 new ATRS git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6980 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) commit 30e75ffbb3a4585a49471e04f11372c42bb30d75 Author: Ludovic Rousseau Date: Sun Aug 24 19:06:21 2014 +0000 12 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6959 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) commit 26db759b02ee9137a0b20877cfc95a691b943093 Author: Ludovic Rousseau Date: Sat Aug 2 17:32:53 2014 +0000 Reformat to have the URL on one line git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6947 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 257 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 168 insertions(+), 89 deletions(-) commit ee69af4024bc984c9d0254763d4a31fcdc93428f Author: Ludovic Rousseau Date: Fri Aug 1 19:35:32 2014 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6946 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) commit 79d0d43727400f3665b5d6f613a70656eca4488b Author: Ludovic Rousseau Date: Thu Jul 10 17:10:45 2014 +0000 14 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6934 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) commit cfcbe3353cc1360dab26c2d4cf9d7ddc2d1ba223 Author: Ludovic Rousseau Date: Fri Jun 20 16:15:18 2014 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6932 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) commit db1c99dd478229eae0bd6da322da2156b4cb5a46 Author: Ludovic Rousseau Date: Thu Jun 5 16:36:12 2014 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6913 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) commit 64d323fc5fa3468afcb1c14cbba7be27bda932ea Author: Ludovic Rousseau Date: Thu May 29 15:49:34 2014 +0000 15 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6903 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) commit f14918b1ac903ee6e13f3f7599c5d167b7b5dd38 Author: Ludovic Rousseau Date: Sat May 3 18:25:46 2014 +0000 25 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6893 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) commit 497ea6780916fd641769b5d67e47f6593580a242 Author: Ludovic Rousseau Date: Tue Mar 11 16:40:20 2014 +0000 11 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6872 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) commit 8bc799252ff4e8c11f943ad9ae312c3689fad3ea Author: Ludovic Rousseau Date: Wed Feb 26 14:02:29 2014 +0000 13 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6863 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) commit 149f8a5dbaf83302ffdb987de02cf7eecc0da182 Author: Ludovic Rousseau Date: Fri Jan 31 16:04:37 2014 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6834 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 67 +++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 46 insertions(+), 21 deletions(-) commit 3ff61cda94b51d95ba5d5eb2dc4f33c53bdc1d3f Author: Ludovic Rousseau Date: Fri Jan 17 14:51:51 2014 +0000 Reformat git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6826 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) commit 86947ad6fb190a7755044d0f470debc038da60e7 (tag: pcsc-tools-1.4.22) Author: Ludovic Rousseau Date: Fri Jan 17 14:07:36 2014 +0000 Release 1.4.22 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6825 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 7 +++++++ 1 file changed, 7 insertions(+) commit 3f37fd739e67eb54589c23bbbae5853bc20e32b8 Author: Ludovic Rousseau Date: Fri Jan 17 13:53:40 2014 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6824 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) commit a6c2bfe51564b4cac1cb530c966897af2d901f9d Author: Ludovic Rousseau Date: Tue Jan 14 16:24:49 2014 +0000 Automatically update the ATR list - Fetch a new ATR file if it was not upgraded in the last 10 hours. - Propose to use http://smartcard-atr.appspot.com/parse to submit a new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6823 0ce88b0d-b2fd-0310-8134-9614164e65ea ATR_analysis | 76 ++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 59 insertions(+), 17 deletions(-) commit 90d8ddfbd4ba9cb1a9a9b11ddc1ed8a55f212264 Author: Ludovic Rousseau Date: Sat Dec 14 17:50:43 2013 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6808 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) commit 057d674c65f8621677e61fa04e39a88b7685467a Author: Ludovic Rousseau Date: Fri Nov 22 08:27:48 2013 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6789 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) commit 27eed84d70cc75082d745a35b1847667d05fe9ea Author: Ludovic Rousseau Date: Sun Oct 27 19:28:55 2013 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6788 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) commit 3b4e040734a68615694a0ad9de78b7a5000bc676 Author: Ludovic Rousseau Date: Fri Oct 11 20:57:00 2013 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6768 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) commit d2d749ee230a4c2a92ae23be3df6dd50e6708d5a Author: Ludovic Rousseau Date: Tue Sep 24 15:57:07 2013 +0000 11 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6756 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 50 ++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 44 insertions(+), 6 deletions(-) commit 58d0e7a9b6f174d542770b996805b3b20ba41099 Author: Ludovic Rousseau Date: Tue Sep 3 16:28:30 2013 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6745 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) commit b6ce8d88792e8db30cfd36e6c440880b06be9361 Author: Ludovic Rousseau Date: Tue Aug 20 16:00:40 2013 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6731 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) commit e9adc67fdea5bdb6942eb9c9c9c27562e1837eee Author: Ludovic Rousseau Date: Fri Aug 2 08:28:26 2013 +0000 11 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6704 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) commit f8c2b0db94f8fdaaaead19648b1cd2302d1137b1 Author: Ludovic Rousseau Date: Mon Jul 29 14:17:37 2013 +0000 Initialize the .cbAtr field Thanks to Frank Morgner for the patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6690 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 1 + 1 file changed, 1 insertion(+) commit 492342327a23f0fac89f9f32c476ec07cb340335 Author: Ludovic Rousseau Date: Thu Jul 4 07:25:16 2013 +0000 If the ATR is not found ask for a description of the smart card I want a description of the smart card, not the reader. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6683 0ce88b0d-b2fd-0310-8134-9614164e65ea ATR_analysis | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 990de2a3f9a626318531a441a49f41e7791876dd Author: Ludovic Rousseau Date: Sun Jun 30 15:22:28 2013 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6679 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) commit 238cdf423f04b0ce9d7f334a7c96aa5115a431b3 Author: Ludovic Rousseau Date: Tue Jun 18 17:00:00 2013 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6665 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) commit 3146fbb6d432703fa31092dab121231b6fed04f6 Author: Ludovic Rousseau Date: Sun May 26 11:13:42 2013 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6636 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) commit 98574665ef2bcd0c0ca61e4ff124ba84fee7c2e4 Author: Ludovic Rousseau Date: Tue May 14 16:06:08 2013 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6628 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 42 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 38 insertions(+), 4 deletions(-) commit e8accd7efda87ed347f058055fcb269bc4ee9ab7 Author: Ludovic Rousseau Date: Tue Apr 23 18:30:26 2013 +0000 12 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6613 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) commit 2fd30ea8809f1c4f00f4410eae93b344186188a1 Author: Ludovic Rousseau Date: Tue Apr 9 15:37:53 2013 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6589 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit 247a8e505477c668b3b4fcc653a392ff02d5a200 Author: Ludovic Rousseau Date: Wed Mar 27 21:37:15 2013 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6578 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) commit fa2825f0970060ff972f9e13ac40cdc7b9a4e124 Author: Ludovic Rousseau Date: Sat Mar 16 10:37:42 2013 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6571 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) commit 31327e471aedc4116d658ae5fa4b570e102845ba Author: Ludovic Rousseau Date: Wed Feb 27 09:36:53 2013 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6537 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) commit d4e5fe784117cef353f2d8bd6a3d3e9778151435 Author: Ludovic Rousseau Date: Fri Feb 15 19:17:03 2013 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6529 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) commit 7fed59add0b3fc714016a046b11a1a5fccce7d8e Author: Ludovic Rousseau Date: Tue Feb 5 17:33:07 2013 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6522 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) commit fcac5eba3d34a70c59ec8c2ca76306852f3a83a3 Author: Ludovic Rousseau Date: Tue Jan 29 17:02:45 2013 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6520 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) commit 562b2028e83a2544b271cc428d0327bd2c80fda4 Author: Ludovic Rousseau Date: Sun Jan 20 17:18:52 2013 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6510 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) commit af820f53f6553d63271f5e818766ba7f0e89656e Author: Ludovic Rousseau Date: Tue Jan 8 20:04:01 2013 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6499 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) commit eca13e9b48c09e00e6ae496899831917354b54b9 Author: Ludovic Rousseau Date: Thu Jan 3 22:01:30 2013 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6498 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) commit 3990b50524392df5d647873c177edaffec6e54aa Author: Ludovic Rousseau Date: Fri Dec 21 09:53:00 2012 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6497 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) commit ff0bca10d980fcea66efb2bbc1ec5baf6deed77e (tag: pcsc-tools-1.4.21) Author: Ludovic Rousseau Date: Fri Dec 7 14:49:59 2012 +0000 Release 1.4.21 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6494 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 6 ++++++ 1 file changed, 6 insertions(+) commit 4d112ae46146dadde0f2bb0c149b8fb953ede8b6 Author: Ludovic Rousseau Date: Wed Dec 5 13:57:40 2012 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6493 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) commit 424f09dde2211877bbdba8eaf3e7e7f4b0ca9743 Author: Ludovic Rousseau Date: Wed Dec 5 13:43:32 2012 +0000 pcscd is in section 8 not 1 Fixes Debian bug #695094 "wrong man page section in SEE ALSO" git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6492 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit b7e4660b35dd82a974c190d2e9f6b510d2ae4a60 Author: Ludovic Rousseau Date: Tue Nov 27 20:28:21 2012 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6485 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) commit f0d1e29cc0a23e7bbc6bbe0a2324a30278321660 Author: Ludovic Rousseau Date: Tue Nov 27 17:06:01 2012 +0000 Do not display time if SCardGetStatusChange() returns because of a time out. Mac OS X PC/SC do not support \\?PnP?\Notification so a timeout of 1 second is used. We do not want to have a log line with the time every 1 second. Thanks to Libor Pospíchal for the bug report. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6484 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit da757f8a4eabff040a33425ca5700b23b248f885 Author: Ludovic Rousseau Date: Tue Nov 6 19:24:00 2012 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6480 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) commit 646257115a5589d14297e3896fc74185b57f7b33 Author: Ludovic Rousseau Date: Thu Oct 11 16:45:27 2012 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6472 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) commit 20b5cc3daca30b744f42aaba2112cfc9088a7f70 Author: Ludovic Rousseau Date: Sun Sep 30 18:24:00 2012 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6466 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) commit 49ff43093d7c328f180ec48c3a2a97c90c1fec6a Author: Ludovic Rousseau Date: Fri Sep 7 15:50:18 2012 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6456 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) commit a1f64bcefba06dfc0e4f8e37a630f59f7c70cb43 Author: Ludovic Rousseau Date: Mon Sep 3 15:48:00 2012 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6453 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) commit edf539bd04aecbbfcfe69c6fd4a7148aaa887499 Author: Ludovic Rousseau Date: Sun Aug 26 14:33:19 2012 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6448 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 37 +++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) commit d11303fd89e00fe4eff086cd38cc81e7e661d50c Author: Ludovic Rousseau Date: Sun Aug 19 18:49:20 2012 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6435 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) commit 4659ad66abdbbbc65f1e4badf8a61c33dc7617a0 Author: Ludovic Rousseau Date: Thu Aug 2 16:25:46 2012 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6398 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) commit 0200c50bc3c2218ca97ce65ba7b18392a250680c Author: Ludovic Rousseau Date: Fri Jul 27 16:48:52 2012 +0000 11 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6395 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) commit 952746479db3c980f43696f37dc6542571bcbf39 Author: Ludovic Rousseau Date: Sun Jul 1 13:40:43 2012 +0000 Copy the ATR list in ~/.cache/ now git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6381 0ce88b0d-b2fd-0310-8134-9614164e65ea sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 87cbfb345de1ec15ca5a7db2acddd773c9f6e32f Author: Ludovic Rousseau Date: Sun Jun 17 12:54:58 2012 +0000 2 new ATRs reformat git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6347 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 90 +++++++++++++++++++++++++----------------------------- 1 file changed, 41 insertions(+), 49 deletions(-) commit 11381e2493f2d55c47c8c9e04c432dd3557626d1 (tag: pcsc-tools-1.4.20) Author: Ludovic Rousseau Date: Sat Jun 16 11:19:25 2012 +0000 Release 1.4.20 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6346 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 4 ++++ 1 file changed, 4 insertions(+) commit 0901786a8ef2c48c06cda655b882ce4006533058 Author: Ludovic Rousseau Date: Sat Jun 16 11:18:54 2012 +0000 Update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6345 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a83f8831a1a2d34c084d841dac96583f0a428852 Author: Ludovic Rousseau Date: Sat Jun 16 11:14:04 2012 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6344 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) commit 7ee4b76c9f3a10cf5276d126116fd591262b5e75 Author: Ludovic Rousseau Date: Sat Jun 16 10:39:18 2012 +0000 Fix compiler warning pcsc_scan.c:280:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6343 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) commit 495b0ba730fa90fc3fabff8675bb3c8568fca51f Author: Ludovic Rousseau Date: Sat Jun 16 10:37:48 2012 +0000 Fix compiler warning pcsc_scan.c:131:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6342 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f6e2e22bb2ddd0132a5e6179f9106b5aa0d35e3f Author: Ludovic Rousseau Date: Sat Jun 16 10:36:43 2012 +0000 Fix compiler warning Use j instead of i for the variable name pcsc_scan.c:128:8: warning: declaration of ‘i’ shadows a previous local [-Wshadow] pcsc_scan.c:78:17: warning: shadowed declaration is here [-Wshadow] git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6341 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 7dc164fd28fd5e03faba7b3550bccc597c71057a Author: Ludovic Rousseau Date: Sat Jun 16 10:35:18 2012 +0000 Fix compiler warnings pcsc_scan.c:83:15: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] pcsc_scan.c:84:14: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] pcsc_scan.c:85:18: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] pcsc_scan.c:86:20: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6340 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 0c8abc287577ab420570d4b76d9d6de7cad4e29a Author: Ludovic Rousseau Date: Sat Jun 16 10:34:15 2012 +0000 Fix compiler warning pcsc_scan.c:59:6: warning: no previous prototype for ‘usage’ [-Wmissing-prototypes] git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6339 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 076256bb631661da448e36db37d99ec00612045e Author: Ludovic Rousseau Date: Sat Jun 16 10:31:54 2012 +0000 Add arguments to CFLAGS instead of overwritting them It is now possible to define extra CFLAGS before the compilation. Like what is done on Debian using dpkg-buildflags. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6338 0ce88b0d-b2fd-0310-8134-9614164e65ea Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3aa0970dde13ef01a5d14c70eae4293f590a958b Author: Ludovic Rousseau Date: Wed Jun 13 15:50:12 2012 +0000 update 1.4.19 description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6335 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 1 + 1 file changed, 1 insertion(+) commit afc3dc3e6d55bf38d4c96dda0e59eb5595647ed0 (tag: pcsc-tools-1.4.19) Author: Ludovic Rousseau Date: Wed Jun 13 14:53:02 2012 +0000 Release 1.4.19 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6334 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 4 ++++ 1 file changed, 4 insertions(+) commit 9f8038702695a2358bcaabe3955414702b2bf51d Author: Ludovic Rousseau Date: Wed Jun 13 12:03:42 2012 +0000 Update version and copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6333 0ce88b0d-b2fd-0310-8134-9614164e65ea ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 55564c7ed02cee052f6bf541c079845f3a1411f1 Author: Ludovic Rousseau Date: Wed Jun 13 12:02:32 2012 +0000 Use XDG_CACHE_HOME env variable http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html defines the default cache directory and the use of XDG_CACHE_HOME to override it. The smartcard_list.txt file is now searched in ~/.cache/ by default Thanks to Diego Elio Pettenò for the idea. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6332 0ce88b0d-b2fd-0310-8134-9614164e65ea ATR_analysis | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit a204b64608e460a4c397594d27773fd8cef56e63 Author: Ludovic Rousseau Date: Tue Jun 12 16:20:36 2012 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6330 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 72 ++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 48 insertions(+), 24 deletions(-) commit 04623ee9d9f2764adfdc8bbfda61a37a3367f87a Author: Ludovic Rousseau Date: Sat Jun 9 11:45:46 2012 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6329 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) commit 5c6212d658fc0257273ccf9823ba6be69f6b6db5 Author: Ludovic Rousseau Date: Tue Jun 5 16:20:50 2012 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6324 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) commit 4e81243df011201c0b2ac143b13c60e2640e62ec Author: Ludovic Rousseau Date: Thu May 31 21:00:23 2012 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6314 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) commit d1761a5786fbeb548f0174efa91361274c41d6c7 Author: Ludovic Rousseau Date: Fri May 18 18:45:57 2012 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6304 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) commit 17fae1b2ecb4594516e50bf7fa55f8f884b59155 Author: Ludovic Rousseau Date: Mon Apr 30 17:04:13 2012 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6288 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) commit 7be00a063552ba0075b1daf2dd3be3be69d1524f Author: Ludovic Rousseau Date: Wed Apr 18 11:28:25 2012 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6276 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) commit b1edbd87230690939a918691c27771b4bae011b7 Author: Ludovic Rousseau Date: Wed Apr 4 20:26:45 2012 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6257 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) commit 35180ac3897e08efd8bb59e234f5f7857ee56488 Author: Ludovic Rousseau Date: Wed Mar 21 12:45:44 2012 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6242 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) commit c2d1153dec2359ba33072e0f1804e172efa0cb6c Author: Ludovic Rousseau Date: Wed Mar 7 14:41:55 2012 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6237 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) commit c636d438b396d4fbf954f8b4580b987becd0cd5e Author: Ludovic Rousseau Date: Sun Feb 19 13:25:29 2012 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6228 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) commit e953691b0d66642f09fda08fe37b23d183cc535b Author: Ludovic Rousseau Date: Thu Jan 26 16:57:15 2012 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6202 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit f5a95208393a247a3c356163827a6688de3b9bfb Author: Ludovic Rousseau Date: Tue Jan 17 17:03:18 2012 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6180 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) commit 7828d0c0e965f59a59ea35fc3768f4dd5e2fb8c1 Author: Ludovic Rousseau Date: Tue Jan 10 17:09:50 2012 +0000 14 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6167 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 53 insertions(+), 2 deletions(-) commit ee40ab51bbfd75483c06753147a4157e8f01c000 Author: Ludovic Rousseau Date: Thu Jan 5 18:39:51 2012 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6166 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) commit 0fcaeed18a460726bf2f54e0cf7ff35ddf607fc4 Author: Ludovic Rousseau Date: Fri Dec 30 17:08:26 2011 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6153 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) commit 5511b7fa93ca34a712536a09a37a2031a04269d2 (tag: pcsc-tools-1.4.18) Author: Ludovic Rousseau Date: Sun Dec 18 13:10:26 2011 +0000 release 1.4.18 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6150 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 7 +++++++ 1 file changed, 7 insertions(+) commit a6b8bef71f881b4491f0950ac8ff60f0d01faea0 Author: Ludovic Rousseau Date: Sun Dec 18 13:04:50 2011 +0000 Display lines of 16 bytes instead of 24 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6149 0ce88b0d-b2fd-0310-8134-9614164e65ea scriptor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1eda212cd98974c68d68858a9e0ddedec2705df6 Author: Ludovic Rousseau Date: Sun Dec 18 12:44:40 2011 +0000 Display bytes of value 0x20 as ' ' instead of '.' Thanks to Alain SAURAT for the patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6148 0ce88b0d-b2fd-0310-8134-9614164e65ea gscriptor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 62efaeef8bbf261b33f47eb85050c12e3777da2b Author: Ludovic Rousseau Date: Sun Dec 18 12:43:45 2011 +0000 Display hex dumps in lines of 16 bytes instead of 17 Thanks to Alain SAURAT for the patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6147 0ce88b0d-b2fd-0310-8134-9614164e65ea gscriptor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit be534c617c457ff4a2ce9988bb12952db53d2bf5 Author: Ludovic Rousseau Date: Sun Dec 18 12:36:16 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6146 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) commit 4bc58334c00609faf319c55d337baafdd10bf55a Author: Ludovic Rousseau Date: Thu Dec 15 19:36:40 2011 +0000 1 new ATR + generalisation of the Reinet SCT WOK card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6140 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 06b813b0c159b0777e335a84f61853a9b5536596 Author: Ludovic Rousseau Date: Wed Dec 14 08:08:09 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6138 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit ae7e00b3ac7aff881a826f01f689fedc176b3764 Author: Ludovic Rousseau Date: Sat Dec 10 08:28:03 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6137 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d75d312cd7ff42ca05c2dcedf463a66d54a79585 Author: Ludovic Rousseau Date: Wed Dec 7 12:53:21 2011 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6136 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit 2edc5b3bc7a22fbc8c1ce120b5f385d4ce084199 Author: Ludovic Rousseau Date: Thu Dec 1 21:12:19 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6127 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit 24b8de94b4bbefd861db34a8afe85a583f810f87 Author: Ludovic Rousseau Date: Tue Nov 29 17:55:20 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6121 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit 679312881db661347fb214a7dae9fba559e80b0c Author: Ludovic Rousseau Date: Fri Nov 25 09:37:35 2011 +0000 Do not mix spaces and tabs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6116 0ce88b0d-b2fd-0310-8134-9614164e65ea sort_smartcard_list.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) commit 4cd573a7917e0b8a3f5511bdb42bb1e0b17626d0 Author: Ludovic Rousseau Date: Fri Nov 25 09:36:26 2011 +0000 3 new ATRs and reorder git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6115 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 99 +++++++++++++++++++++++++++++------------------------- 1 file changed, 53 insertions(+), 46 deletions(-) commit d3606386ca34ee8ced822d60c631938d3b7041a8 Author: Ludovic Rousseau Date: Wed Nov 23 08:28:56 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6114 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 8104e2dbc5ea7f909d552bce34ddeac9ea92250e Author: Ludovic Rousseau Date: Tue Nov 15 17:30:09 2011 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6106 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) commit d3c1886bb36db35477a41ec9c5a1a5e025a1a3fa Author: Ludovic Rousseau Date: Sun Nov 6 15:50:50 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6101 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) commit c173f27752204bf47c1fc7809ded8c75c0bcf3de Author: Ludovic Rousseau Date: Wed Oct 26 16:31:42 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6084 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit ca511b33b82b8046af51d3629193551636ee8451 Author: Ludovic Rousseau Date: Sun Oct 23 17:27:50 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6068 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 59d0207d55e41a1c8b55eccdf78773d2e418f33a Author: Ludovic Rousseau Date: Tue Oct 18 16:26:17 2011 +0000 Fix description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6048 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 31beb67756d42301a73cb31ebb9a93d8780130fc Author: Ludovic Rousseau Date: Tue Oct 18 16:24:37 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6047 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) commit 16e177a22ea9a91dc2642bed970aa6719a3d0196 Author: Ludovic Rousseau Date: Sun Oct 16 14:26:37 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6046 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 35d98da54a131f879ed6f4a9502a88d322fd514b Author: Ludovic Rousseau Date: Fri Oct 14 06:11:03 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6039 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 038df2b6d59310cbb34182a02cc357068a28acc8 Author: Ludovic Rousseau Date: Tue Oct 11 16:03:39 2011 +0000 Add card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6031 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit cd247a94e6f1c9483aeb208ca08380fe81a65ff2 Author: Ludovic Rousseau Date: Tue Oct 11 16:03:15 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6030 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 7714b1c8145522a1658b6b65c5091eefe181511e Author: Ludovic Rousseau Date: Thu Oct 6 18:19:51 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@6004 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit a0c30e600991cf57ee054bf30452e29b5d0fe13e Author: Ludovic Rousseau Date: Tue Oct 4 16:03:59 2011 +0000 update URL in card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5998 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit e330d19fdd838f6b762224a5e5aba940475cd71a Author: Ludovic Rousseau Date: Sat Sep 24 17:03:25 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5966 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 7513c5bc7a6c768e52e9321d9bb2087fb9f21acd Author: Ludovic Rousseau Date: Tue Sep 20 17:06:41 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5958 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 7f31aef517348b4593d183556c7aaead864e6006 Author: Ludovic Rousseau Date: Sat Sep 17 20:05:55 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5957 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit fadf38acf9315ca1d81dd05065114ebab0f6d1df Author: Ludovic Rousseau Date: Fri Sep 16 16:02:41 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5956 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit c2ae35cc7431869148c5772dd31b5feaaf40900e Author: Ludovic Rousseau Date: Fri Sep 9 16:48:44 2011 +0000 11 ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5950 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) commit 91152ecdde056f8adde1aaa93cf61f07ce373a18 Author: Ludovic Rousseau Date: Mon Aug 29 16:39:47 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5920 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit e0c78e5c7abb867d11c73c11dd5118939ccec6ea Author: Ludovic Rousseau Date: Sun Aug 28 08:04:57 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5918 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 569f3c5e88483445bd8a1b74db6af8d2b0db4dcb Author: Ludovic Rousseau Date: Sat Aug 27 15:54:45 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5917 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit c9464e1488f336d6a9b5345b0d7e2123927c5dfb Author: Ludovic Rousseau Date: Sat Aug 27 07:36:38 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5913 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit 79be3252e0490007919a18749d32ff81c91f9479 Author: Ludovic Rousseau Date: Fri Aug 19 09:32:46 2011 +0000 Remove extra tab git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5892 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 096a99096f097876ee6a61f9f3d04ff79da697ed Author: Ludovic Rousseau Date: Wed Aug 17 21:02:23 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5889 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 +++++++ 1 file changed, 7 insertions(+) commit 3da0e1bb3246e203291295bec6defb49eab0ae22 Author: Ludovic Rousseau Date: Tue Aug 9 15:38:01 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5888 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit 32cdd52e72bd692711ba6aa09d1ac5525657b657 Author: Ludovic Rousseau Date: Mon Aug 8 20:58:25 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5884 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 58c2000deb39d8f52e82a4fb640141a2ccf0226f Author: Ludovic Rousseau Date: Mon Aug 8 15:47:14 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5883 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 7174fcebb1233cb89a2b7e620d7ca0d41407e19b Author: Ludovic Rousseau Date: Wed Aug 3 14:31:03 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5876 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) commit fe33f3c6aeafccdaa9b4ec158cdc609847666b53 Author: Ludovic Rousseau Date: Sun Jul 17 08:27:24 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5872 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 1c1cc8704fc0aa0b2700214205ead07afcfc7ccf Author: Ludovic Rousseau Date: Tue Jul 5 15:58:42 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5823 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit 15551729019894645ddd389a1bea7038fa8d3415 Author: Ludovic Rousseau Date: Sat Jul 2 17:00:41 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5820 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 8c2fb972cb1c06ed682031a0c2d18af47e2682e0 Author: Ludovic Rousseau Date: Thu Jun 30 16:50:47 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5817 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit ef4de73d2b18e3c27aac61ed2aa41738ea3daa5d Author: Ludovic Rousseau Date: Thu Jun 16 18:30:26 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5798 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 5aa64177e9df17a56e4a4a0e181daf253ad2826a Author: Ludovic Rousseau Date: Wed Jun 15 09:41:26 2011 +0000 Update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5792 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a16d884c3d625a4dd07f8a16fd3519e12c692ffd Author: Ludovic Rousseau Date: Wed Jun 15 09:41:05 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5791 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit d5bb3d8bf2259edace99437d0455be1fbf5146ff Author: Ludovic Rousseau Date: Fri Jun 3 06:00:25 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5777 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 49853a8b7a8e6d78672753e7cf645935e3dd0fc3 Author: Ludovic Rousseau Date: Sat May 28 17:19:00 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5768 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) commit c77dc938b0b9524d634d0b90976d962568a5b981 Author: Ludovic Rousseau Date: Fri May 27 18:39:27 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5767 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit e4caadeef7fdffa1468a51e8addbe2fc0b6f05ca Author: Ludovic Rousseau Date: Tue May 17 15:42:10 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5760 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit c222a898527d64bcb991aab4881711ab18423440 Author: Ludovic Rousseau Date: Sat May 14 15:20:31 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5748 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) commit da47a218f5fc1ac14d3728f3f8a4bc042cdec121 Author: Ludovic Rousseau Date: Sat May 7 18:08:49 2011 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5717 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) commit 6acea9258ce00f8631ba29b906bfc670f52f33c4 Author: Ludovic Rousseau Date: Thu Apr 21 20:34:07 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5702 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 4394772bdb9cc3e1f429e5815e8d629ca0cd0f5a Author: Ludovic Rousseau Date: Tue Apr 19 15:44:13 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5701 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit fd83b95715a25d653ba6bf9fcb56c3a6f99438bb Author: Ludovic Rousseau Date: Sun Apr 17 07:15:50 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5700 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit cb56f90df65eed0ab354472cfbf1c203c90fcf59 Author: Ludovic Rousseau Date: Tue Apr 12 19:41:37 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5696 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit eac2420e37e199a818f4e1144d7297e16b0dd985 Author: Ludovic Rousseau Date: Wed Mar 30 09:35:10 2011 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5680 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) commit c340a85381ab894f61e892262289ccc1853e15d3 Author: Ludovic Rousseau Date: Fri Mar 25 17:19:46 2011 +0000 fix an ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5670 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit fe6d3564d794d08947213eb33df463bd9b181f56 Author: Ludovic Rousseau Date: Fri Mar 25 16:10:50 2011 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5669 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit ce8f01b01f363736d6635c570f709e202803d256 Author: Ludovic Rousseau Date: Tue Mar 22 21:16:07 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5665 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit c6b00474f8d91b2169a8a48ccbbc78a1cf02c536 Author: Ludovic Rousseau Date: Mon Mar 21 16:59:11 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5664 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 56bb3d8f7e13c4ac3fd6cd58c7150f8f9a797b47 Author: Ludovic Rousseau Date: Fri Mar 18 15:11:52 2011 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5661 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) commit 08c20c692e467cc5b164812976a6582cdb34dfef Author: Ludovic Rousseau Date: Wed Mar 9 09:57:31 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5648 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 4fec4d0f28e5616860cac271323026199dad38e1 Author: Ludovic Rousseau Date: Sat Mar 5 16:24:53 2011 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5642 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit 5ccad75546962a03734ca3eea660d26b54ef4b39 Author: Ludovic Rousseau Date: Fri Feb 25 17:59:09 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5641 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 9409be4b6a9d3070bdd8e470f27c74ede32ac5c1 Author: Ludovic Rousseau Date: Thu Feb 24 17:39:02 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5635 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit cb5feb67f8ce94427e801d3bd0a9f854703bd51b Author: Ludovic Rousseau Date: Wed Feb 23 19:41:56 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5631 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit ced6565996ff1739ccc6b6b36535fe49a2e7e705 Author: Ludovic Rousseau Date: Wed Feb 23 17:41:55 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5630 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit f3a7bbe931fb8a48f30a0b57a7707c155432f1da Author: Ludovic Rousseau Date: Fri Feb 18 17:11:29 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5619 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 +++++++ 1 file changed, 7 insertions(+) commit 3f4b536422f7afb0f853ea856d30c7a1c396ea0f Author: Ludovic Rousseau Date: Thu Feb 17 19:50:59 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5618 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 +++++++ 1 file changed, 7 insertions(+) commit 2d7dfad8d656ccc52d1cdad308ce34f7bb0fbccd Author: Ludovic Rousseau Date: Wed Feb 16 14:39:04 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5613 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit 6aa6ddbead31261b3463c6d37813abd86df9269d Author: Ludovic Rousseau Date: Tue Feb 15 19:49:36 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5598 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 6f47771c221ea7d61a8373a511b64de3a7c75eb3 Author: Ludovic Rousseau Date: Fri Feb 11 17:44:21 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5591 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d28771a507bd6580aea3864426f7f5eb15f1ca39 Author: Ludovic Rousseau Date: Thu Feb 10 21:59:20 2011 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5590 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) commit 06093a8cc9184586fca6787a86a685455c661120 Author: Ludovic Rousseau Date: Wed Feb 9 22:01:54 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5588 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 87d83ade7a03878ce5595975b999cae921250e55 Author: Ludovic Rousseau Date: Tue Feb 8 17:09:55 2011 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5585 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) commit 2abc564504167ae9c02520a451b0412fb95531c8 Author: Ludovic Rousseau Date: Fri Feb 4 09:45:22 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5577 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit d397ac16b5bfc61e8d285e736a8ed4630f5ec36a Author: Ludovic Rousseau Date: Wed Feb 2 13:43:41 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5576 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit b8abd955ae0a991e82e7c72418b01f097b1541e8 Author: Ludovic Rousseau Date: Sat Jan 29 16:06:55 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5571 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit ea2ccf4b238e397fd0f29c82d3e8cdb715af9b6c Author: Ludovic Rousseau Date: Sat Jan 29 12:23:54 2011 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5564 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) commit ad74d7c20ebb2dcc666b72e3deda1e035eca5f9e Author: Ludovic Rousseau Date: Fri Jan 28 20:01:22 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5561 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 +++++++ 1 file changed, 7 insertions(+) commit 13de583e4dfc9c5d10b8a1a74b108c14e6948922 Author: Ludovic Rousseau Date: Wed Jan 26 17:01:06 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5553 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5c529394a7b6dab8ae7c24684b3d03bd574a112a Author: Ludovic Rousseau Date: Tue Jan 25 17:10:34 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5552 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 24044d18f2f4b0b0ef7eb7426bde1b1152f3cd70 Author: Ludovic Rousseau Date: Tue Jan 25 17:09:02 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5551 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit c6a713de8402ad0acb8697dfdd00b6493c2ebf24 Author: Ludovic Rousseau Date: Wed Jan 19 22:44:06 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5529 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 4c21a7b8311c0aae25aa8a53c2897cdbf13cd56f Author: Ludovic Rousseau Date: Wed Jan 19 09:12:29 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5526 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 +++++++ 1 file changed, 7 insertions(+) commit a1d64c758dd552a827ee469875a61f53dff7148e Author: Ludovic Rousseau Date: Mon Jan 17 17:14:26 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5512 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit d247f8076f8b66554c4b2ce92397fd7977ea6aef Author: Ludovic Rousseau Date: Fri Jan 14 16:57:12 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5511 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 093e30bf8667e89ddb1df6fca42f3e81cf6b3320 Author: Ludovic Rousseau Date: Fri Jan 14 16:56:20 2011 +0000 update 1 ATR description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5510 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 1dea1ecf434bbd6fcda8e3fdf646882916c1ecc9 Author: Ludovic Rousseau Date: Thu Jan 13 17:49:34 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5503 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 6f711b1793246b5f117544d5c227c98e98c7e66c Author: Ludovic Rousseau Date: Thu Jan 13 17:31:00 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5502 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 3c649068001414a93ea49acfdab46d26d4d275ec Author: Ludovic Rousseau Date: Sat Jan 8 10:40:13 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5497 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 7b4e7f0a7c28435cc34a6a774109b31e1be5335a Author: Ludovic Rousseau Date: Thu Jan 6 20:28:01 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5493 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 30e7a1b709507e83a2dbbd650b22093e3883ac6f Author: Ludovic Rousseau Date: Thu Jan 6 19:51:34 2011 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5492 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 66a4bd7cf1eaec7e8e224517f73a16757916bb44 Author: Ludovic Rousseau Date: Wed Jan 5 13:16:07 2011 +0000 Display a timestamp only for each event, not for each reader on the same event. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5487 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) commit adde91467659ffdc706b75e1d44607a981757513 Author: Ludovic Rousseau Date: Wed Jan 5 13:13:42 2011 +0000 Reformat git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5486 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3f34ec9cd01b3b454fbe0208b6590374dc75f891 Author: Ludovic Rousseau Date: Wed Jan 5 13:11:40 2011 +0000 Display if reader PnP mechanism is used git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5485 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) commit e2a0b5bf50ee2a29ef9860292ab1981a228cc818 Author: Ludovic Rousseau Date: Wed Jan 5 13:03:38 2011 +0000 Do not print an extra \n if the ATR is not parsed/analysed git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5484 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 5cb8e4e3e23133fa9c6df34dda9d121d950149f1 Author: Ludovic Rousseau Date: Wed Jan 5 12:59:11 2011 +0000 Update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5483 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 31133200d02959364fd8157b62b4682e2ace57e2 Author: Ludovic Rousseau Date: Wed Jan 5 12:14:37 2011 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5482 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit 746f4753c2c6419f88e09f82c7a03c41449cf04c Author: Ludovic Rousseau Date: Tue Jan 4 17:58:42 2011 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5479 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) commit 4dd8b6123bd2a6fba0be54d5605ee0baa1dcfcac Author: Ludovic Rousseau Date: Mon Dec 20 08:14:46 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5460 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 65b72e1aec50415091e10323bc741d086ae3c205 Author: Ludovic Rousseau Date: Sun Dec 19 16:24:33 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5459 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 785c0ac8d3fd84ea952e3e7afbb67c3a697fcb6a Author: Ludovic Rousseau Date: Wed Dec 15 16:35:06 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5454 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 0ddb800dd3e4cb4d12de0a9489b11e0ad4051e07 Author: Ludovic Rousseau Date: Wed Dec 15 15:23:46 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5453 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 2a8fe75f06d9afef6469c489561991294c3e8818 Author: Ludovic Rousseau Date: Sat Dec 11 13:45:23 2010 +0000 update copyright dates git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5439 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit ac47a760b16bc0f0ce62e98e3da54f8b84c38dc8 Author: Ludovic Rousseau Date: Fri Dec 10 15:11:52 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5438 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit b0fe40f69dc7cba1fbb753f3f5a05c6cb9ae9acd Author: Ludovic Rousseau Date: Thu Dec 9 19:55:45 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5435 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 628f62c793795c9ac8facc2aca9bced8e67daeb0 Author: Ludovic Rousseau Date: Wed Dec 8 07:01:24 2010 +0000 Add an ATR documentation git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5433 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit 2fafa8d87e1380462faae3f802b5a20be44665f5 Author: Ludovic Rousseau Date: Tue Dec 7 17:04:21 2010 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5432 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) commit d0f89c610ab8a83cb83e70a6a0562e21fcd82896 Author: Ludovic Rousseau Date: Wed Dec 1 13:03:46 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5424 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit ea3d400c999ace634e1a2755ded23c9219d90c6f Author: Ludovic Rousseau Date: Sat Nov 27 10:46:16 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5421 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 16abdaafc41accc69240a63a8cdaeea6ba628cf0 Author: Ludovic Rousseau Date: Fri Nov 26 10:08:24 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5419 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit cac7cd86e61fc4a3ec0d18c955463dedaed5189a Author: Ludovic Rousseau Date: Wed Nov 24 12:26:36 2010 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5418 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit 95475e911334b1965a2a2b11a19653c4bb3fe2a2 Author: Ludovic Rousseau Date: Wed Nov 24 12:24:43 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5417 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 +++++++ 1 file changed, 7 insertions(+) commit bbb41f44a53d273eab6571162feff5d86c5d327b Author: Ludovic Rousseau Date: Tue Nov 23 17:34:34 2010 +0000 Fix 1 ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5416 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit f0c56c1138b59eac38f20417be5937e191364d81 Author: Ludovic Rousseau Date: Sun Nov 21 10:55:38 2010 +0000 Check for trailing spaces and tabs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5411 0ce88b0d-b2fd-0310-8134-9614164e65ea sort_smartcard_list.py | 3 +++ 1 file changed, 3 insertions(+) commit 9672580fc86253b0a2f46aee556c80a5a6bc61c7 Author: Ludovic Rousseau Date: Sun Nov 21 10:19:48 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5410 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit ee36d6b08659830732321bd572f07d9b6a8afc1f Author: Ludovic Rousseau Date: Sat Nov 20 08:10:36 2010 +0000 fix trailing space git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5408 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit b51c20325ee8cb6b075a9dbfa03e7a64fdbceb0b Author: Ludovic Rousseau Date: Fri Nov 19 17:18:08 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5407 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 1cc672c35256b1066af7810f257dada8ffd453de Author: Ludovic Rousseau Date: Fri Nov 19 17:15:15 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5406 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit f9d94bd10346b1616381b230197751e27341b869 Author: Ludovic Rousseau Date: Wed Nov 17 15:20:52 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5405 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) commit 4074e8e281f70afc70e23eb3f610d97c24da419f Author: Ludovic Rousseau Date: Wed Nov 10 10:14:36 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5395 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 9270fa5efbfe95daebd3710cbc1a44aa95d108d2 Author: Ludovic Rousseau Date: Tue Nov 9 19:53:34 2010 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5394 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit f6974e92181107f63f34f5651e96182dc1c80d96 Author: Ludovic Rousseau Date: Fri Nov 5 17:07:49 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5380 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 7a08704ef4a3851d0ef6098a731adbbf9da0097a Author: Ludovic Rousseau Date: Thu Nov 4 20:00:55 2010 +0000 update 3 descriptions git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5374 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit a6fc0c8d7f3855efd2f4ad01daed6e3a4e48c2fb Author: Ludovic Rousseau Date: Mon Nov 1 16:22:02 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5369 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 204e57e0797bbcad5c91ff5aaa0d1f93c3ece370 Author: Ludovic Rousseau Date: Mon Oct 25 16:39:46 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5353 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 5be70018426fe39fb8596b269f6220a49178b153 Author: Ludovic Rousseau Date: Thu Oct 21 15:53:12 2010 +0000 add a card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5327 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit 6c0301555253ffbf2ed91323bb5aaaab942ff59a Author: Ludovic Rousseau Date: Wed Oct 20 12:20:25 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5326 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 72c634af12dc50b459dde1345a193b86053adc9d Author: Ludovic Rousseau Date: Sun Oct 10 07:45:33 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5286 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 6cdd5a506ca9a018216e15fed144b0e1a832c17c Author: Ludovic Rousseau Date: Fri Oct 8 16:44:11 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5285 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit 6b0f5dacdd5d4f27750229fb5f0ba87f2c40aa56 Author: Ludovic Rousseau Date: Thu Sep 30 18:25:50 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5272 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 39d4a3ec4d1c7467a4024939deba0fde5d0c71be Author: Ludovic Rousseau Date: Tue Sep 28 18:29:01 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5271 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 2df9c4d773c7ac7f763e5c043ba745e816e256ae Author: Ludovic Rousseau Date: Thu Sep 23 15:50:48 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5270 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 0e79d8ee65329e2ba2c0c539dc9914a7e2d467a6 Author: Ludovic Rousseau Date: Sun Sep 19 07:20:45 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5261 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 335724454c61c286382395900601cfdf454d98d3 Author: Ludovic Rousseau Date: Sat Sep 11 22:02:59 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5250 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 4a01cb671fdf799782f358029221d8d9325f0239 Author: Ludovic Rousseau Date: Sat Sep 11 21:11:16 2010 +0000 Add card documentation git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5249 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 6b7d033b1477f23f17f49abf1ac8f7ece8673f59 Author: Ludovic Rousseau Date: Thu Sep 9 20:08:28 2010 +0000 Add a card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5248 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit c9bcba5f68c80a847163153cbec2e3e8173c2873 Author: Ludovic Rousseau Date: Wed Sep 8 13:04:00 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5247 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 178bb6c651ac7c79edd7027eeec600c80f539bda Author: Ludovic Rousseau Date: Sat Sep 4 13:40:10 2010 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5243 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3ed0697077a1b4014d3374000c957ce40cce4408 Author: Ludovic Rousseau Date: Sat Sep 4 13:38:03 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5242 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 7f60b80d3d4f5e68efb2fb72e56ee7c592daa878 Author: Ludovic Rousseau Date: Thu Sep 2 19:06:24 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5228 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 3bef5be6ee6bdb85d8e7cf9c7ac429fe17046b98 Author: Ludovic Rousseau Date: Thu Sep 2 12:12:21 2010 +0000 Correctly detect reader Plug and Play support git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5220 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 9dd847152b2c17bac5d704954dac92682c7c4038 Author: Ludovic Rousseau Date: Tue Aug 31 19:40:10 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5209 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 785ebf62a69008c620064d7c57bcbf6e759427d5 Author: Ludovic Rousseau Date: Mon Aug 30 19:23:05 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5203 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 315666d008ca37e54cb7cc396e66f1032bc15370 Author: Ludovic Rousseau Date: Sun Aug 29 15:54:04 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5201 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 0a038fa6c1e51b59958d9d2bc531b9b593a2a484 Author: Ludovic Rousseau Date: Sat Aug 28 12:19:04 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5200 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 4c4be05711d19281216ca90f95d4999c06b147e5 Author: Ludovic Rousseau Date: Wed Aug 25 20:23:00 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5184 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 071486137c05ca6f4e3b44f7f91fde97dd1eb240 Author: Ludovic Rousseau Date: Mon Aug 23 18:10:03 2010 +0000 fix typo in card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5180 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 0f2f54504bb6844119948ad1b3b7de16cdadca0e (tag: pcsc-tools-1.4.17) Author: Ludovic Rousseau Date: Wed Aug 18 21:42:46 2010 +0000 release 1.4.17 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5162 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit c4cb7cf643f7a3e5c4b3fc119c5abc1f100e8f17 Author: Ludovic Rousseau Date: Wed Aug 18 21:36:11 2010 +0000 Use SCARD_READERSTATE instead of SCARD_READERSTATE_A since it is no more defined in pcsc-lite >= 1.6.2 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5161 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 940da6ac6aa43511e64dbf01b5c4c2c2a75a011a Author: Ludovic Rousseau Date: Tue Aug 17 19:22:16 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5158 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit b7fee99b67d3a9555289ce4e6fd8df991d3a9b1c Author: Ludovic Rousseau Date: Sat Aug 14 14:13:53 2010 +0000 add a card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5131 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit 7f2945f145aa590f5a791c8c57d9c2204cf75ae4 Author: Ludovic Rousseau Date: Wed Aug 11 19:30:35 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5122 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit d64cd6a1359ef99abed445ee3857419db9da5f6c Author: Ludovic Rousseau Date: Sat Jul 24 21:23:45 2010 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5068 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) commit 563ff99e70d28a0667e5e88039f1e541fdd159c5 Author: Ludovic Rousseau Date: Thu Jul 8 19:06:56 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5064 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit d1a89c52f27c89a78ccca999c2840e22cf4649d7 Author: Ludovic Rousseau Date: Fri Jul 2 18:18:04 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5063 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 6366c3d0c3722c23b376d7480d903155feea1f57 Author: Ludovic Rousseau Date: Thu Jul 1 16:25:39 2010 +0000 update card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5053 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 0f700b99019fa5bacce83052da984e45f4f2aae0 Author: Ludovic Rousseau Date: Wed Jun 30 08:49:11 2010 +0000 update card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5049 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 7d424a192daa8ac923c3d76562c2dc1faf875eb4 Author: Ludovic Rousseau Date: Tue Jun 29 15:49:19 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5048 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit e339d8f243835da327d3dff196568f2a5bfff25c Author: Ludovic Rousseau Date: Sun Jun 27 09:07:04 2010 +0000 remove space at end of line git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5042 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 7be992d40720a65ea17e9eb056a00d0b86de6745 Author: Ludovic Rousseau Date: Sun Jun 27 09:03:58 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5041 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit 446eb7bd344d4df09fb3b750af6e08611f3f2d59 Author: Ludovic Rousseau Date: Tue Jun 22 15:50:26 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5035 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit a1f0fe6385f0a9736cf79011faa0841e342746c2 Author: Ludovic Rousseau Date: Sun Jun 20 18:20:00 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@5018 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 4ee50018ce4509f914988c22e19e117ba1f4d00a Author: Ludovic Rousseau Date: Sat Jun 12 15:40:51 2010 +0000 Add an ATR description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4990 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit 4d35732d71f2ab0e11aed835cecbad8c8f2a04b8 Author: Ludovic Rousseau Date: Thu Jun 10 16:32:06 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4989 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 8443ba47e98fce07223451d3ceb9c1e2ab412882 Author: Ludovic Rousseau Date: Tue Jun 8 16:26:53 2010 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4984 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit c8c71ee9b5e9953c28c3059f37f42fcaf9e0bfa8 Author: Ludovic Rousseau Date: Fri Jun 4 07:34:37 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4976 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 17c59928252c101d3e291d6f34e039f4529322f9 Author: Ludovic Rousseau Date: Fri May 28 07:03:53 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4966 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 2ff8fab6a6d938aef3ebf1fa143a657eb86399ed Author: Ludovic Rousseau Date: Tue May 25 20:42:28 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4962 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit cb976d076b87efe34db5c853afcdd50c4429f544 Author: Ludovic Rousseau Date: Mon May 24 18:21:22 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4959 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit f728bb40a0dd46c6d34c3f88749b99cba6e019ed Author: Ludovic Rousseau Date: Thu May 20 16:02:59 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4958 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit f4324c8396fc106cdd1f52520ec55c933c4e1e2a Author: Ludovic Rousseau Date: Tue May 18 15:48:45 2010 +0000 add a card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4955 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit 1df2e335f6fc9b4cfe9d89f53be4ba99c93a650a Author: Ludovic Rousseau Date: Sat May 15 11:35:00 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4942 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit d2e8555ae048377fe56bda130fe9d9cff764bc26 Author: Ludovic Rousseau Date: Sat May 8 17:20:24 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4935 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit cae0fe4c4de7f2ff368c194baab59e5c5fb46ece Author: Ludovic Rousseau Date: Fri May 7 15:52:35 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4929 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit d87d5375a357713cc17319a400c487ab31145a10 Author: Ludovic Rousseau Date: Wed May 5 18:30:39 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4922 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 79e250e77c63a2d682ce216cb1066b46c1e71e5e Author: Ludovic Rousseau Date: Tue May 4 16:10:22 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4919 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit dfdf4cfaccfe7e87b66469e87bce61f68d39c483 Author: Ludovic Rousseau Date: Wed Apr 28 18:28:19 2010 +0000 update 1 ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4898 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 ++ 1 file changed, 2 insertions(+) commit f3e90aae1fd7b68f3d6b7d852ed3a083fae1fd51 Author: Ludovic Rousseau Date: Sun Apr 25 09:08:06 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4895 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 58f3c4bc45d7a3917099c88eafaeb44e81bdbdd4 Author: Ludovic Rousseau Date: Sat Apr 24 08:09:15 2010 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4892 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) commit afe0b78fef35d641c0654dae6ea2dbd21d8dd1e5 Author: Ludovic Rousseau Date: Thu Apr 22 16:21:04 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4891 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 5e5da73b3fdff86e3932f9571e86e27bf31a3105 Author: Ludovic Rousseau Date: Thu Apr 22 16:17:46 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4890 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 552478c0915cdf1de99c5cd57c50b99be6f94452 Author: Ludovic Rousseau Date: Tue Apr 20 18:58:58 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4887 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit a7d5696757efbf81c22cde451abc59d9624c27bd Author: Ludovic Rousseau Date: Sat Apr 17 07:30:31 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4880 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit cb4e2576d4b6c336cde5c30f9a78040b012301a5 Author: Ludovic Rousseau Date: Fri Apr 9 17:13:38 2010 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4868 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) commit 60446dd498437f4b6263b4ccbf9cc3f319b944fb Author: Ludovic Rousseau Date: Tue Apr 6 15:41:19 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4853 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 74c1cc1066a53fae2023b2fbaa72c0d32e844bc7 Author: Ludovic Rousseau Date: Fri Apr 2 08:43:12 2010 +0000 68 new ATRs families from the PCSC standard, Part 3, Chapter 3.1.3.2.3.2, and Part 3 Supplemental Document git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4852 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 210 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 209 insertions(+), 1 deletion(-) commit ef1a358b9a7c0b40c4645f5969593770b34ed331 Author: Ludovic Rousseau Date: Thu Mar 25 20:04:04 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4842 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit bb51bf9ae5d153262076e17ededb20c7f67cee27 Author: Ludovic Rousseau Date: Wed Mar 24 10:33:53 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4841 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 20346d466743396b61c0af8766b89d29d7499cce Author: Ludovic Rousseau Date: Tue Mar 23 17:15:35 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4840 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 94660ae65799e4a6eae582b8be1cdc241397726d Author: Ludovic Rousseau Date: Sun Mar 21 14:22:42 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4837 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit 7f88ee186d6f666a6e596b035ec7878edd20e4b4 Author: Ludovic Rousseau Date: Fri Mar 19 08:37:57 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4835 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 52e23a4da0bf6e2791c0c92bed2debf0a5fb6f81 Author: Ludovic Rousseau Date: Wed Mar 17 17:33:10 2010 +0000 use . instead of ? in a pattern matching git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4828 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit b610c9da38666293c8423644fc1e17eda9a7d709 Author: Ludovic Rousseau Date: Wed Mar 17 16:57:12 2010 +0000 generalize an ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4827 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 068b9cfa25038b4b19153e23a3b963675b4655da Author: Ludovic Rousseau Date: Wed Mar 17 07:31:54 2010 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4826 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit a067004dc97018468d5d7715a4ee96c33d807942 Author: Ludovic Rousseau Date: Tue Mar 9 20:04:34 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4811 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit d7f5520c21f70b834113b5b295abc8bf97c51d6d Author: Ludovic Rousseau Date: Sat Mar 6 17:05:24 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4798 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit df2daa19249d833ba2ea4c271378a88bf202def8 Author: Ludovic Rousseau Date: Sat Mar 6 15:51:22 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4797 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit 38924a784d66936b0f711e9e08d25667baa3748a Author: Ludovic Rousseau Date: Thu Mar 4 19:38:10 2010 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4794 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) commit 41f9b9f60105f6670f905cb68e2320e73184fe48 Author: Ludovic Rousseau Date: Wed Mar 3 16:10:37 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4787 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 387ce654a41e4b2e5d95163872f755046eb4c0f1 Author: Ludovic Rousseau Date: Tue Mar 2 16:51:23 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4786 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit a7bb1845ebb902026be964f365055ced610a7611 Author: Ludovic Rousseau Date: Tue Mar 2 16:45:00 2010 +0000 correct an ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4785 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) commit c5206abe3bbb8f3626c5e0d6c62652e01989c761 Author: Ludovic Rousseau Date: Fri Feb 26 17:43:21 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4782 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 2ac63a1ec622e3c8e2a69743dc11c8e5dd65799c Author: Ludovic Rousseau Date: Tue Feb 23 23:36:21 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4774 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 0691ed0eb1dcf2bd1ef5ae8ed4b43ec289e029bc Author: Ludovic Rousseau Date: Tue Feb 23 21:22:50 2010 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4770 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) commit 2da7df5fed35ac2a2e34ed9ac071b2f90b2cffcb Author: Ludovic Rousseau Date: Mon Feb 22 08:58:20 2010 +0000 avoid french in card descriptions Thanks to Martin Paljak for the bug report git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4767 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit 194670bfa12ac78856ce8d983cd96fcf5712a57a Author: Ludovic Rousseau Date: Sat Feb 20 20:35:34 2010 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4764 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) commit 8f2bd39117066d806ca53c6c103c20782f4e208c Author: Ludovic Rousseau Date: Fri Feb 12 20:08:04 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4763 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 6c2d9587ff9316c75412a0691c27ed1f93b4c40b Author: Ludovic Rousseau Date: Thu Feb 11 19:59:27 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4752 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit 6008c40c18858b6a5b3ea1bef5cb2306212c6f89 Author: Ludovic Rousseau Date: Wed Feb 3 06:54:03 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4706 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 9ed5e1eb42c79034f33da44ad4f292dc9b1f18b5 Author: Ludovic Rousseau Date: Thu Jan 28 21:47:24 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4693 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit bac0816d5efd6af8f9e540ec78d4d13e28106948 Author: Ludovic Rousseau Date: Tue Jan 26 20:20:36 2010 +0000 relax an ATR matching pattern git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4688 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit c73174f4c6d1af47f43153548a3bed93469f0078 Author: Ludovic Rousseau Date: Sun Jan 24 19:37:19 2010 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4687 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit 332570d5698d59916375e22ca72247dc36fffe0c Author: Ludovic Rousseau Date: Fri Jan 22 17:29:51 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4686 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit eaf385a827ff5747feb5353db271eb0fece532da Author: Ludovic Rousseau Date: Wed Jan 20 19:11:57 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4679 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 2edea7ab37cd16d0ccac2e9742fb73fcc430d841 Author: Ludovic Rousseau Date: Tue Jan 19 22:11:48 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4678 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a6581bf3dad7edb0ac87e7f708da9042e0425ed1 Author: Ludovic Rousseau Date: Tue Jan 19 17:17:59 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4677 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 9f52bd9685552117e70c2c539d31bdba8aea7e47 Author: Ludovic Rousseau Date: Wed Jan 13 15:46:41 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4664 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit 49c834dde159e33edab7e0f5e4ad76ed560fb822 Author: Ludovic Rousseau Date: Wed Jan 13 07:35:40 2010 +0000 generalize the Feitian PKI ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4663 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit b42614944ed6cf91d2e1abd22e6419f62c9acdb3 (tag: pcsc-tools-1.4.16) Author: Ludovic Rousseau Date: Tue Jan 12 21:33:37 2010 +0000 release 1.4.16 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4661 0ce88b0d-b2fd-0310-8134-9614164e65ea README | 8 ++++++++ 1 file changed, 8 insertions(+) commit 6f4fa48b1cb274868af0c612ee5d37868910296e Author: Ludovic Rousseau Date: Tue Jan 12 21:32:12 2010 +0000 ignore ".svn" instead of "CVS" files git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4660 0ce88b0d-b2fd-0310-8134-9614164e65ea create_distrib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 271354f96d6bddb0b177e00d8a20b107dfdc634e Author: Ludovic Rousseau Date: Tue Jan 12 21:30:28 2010 +0000 use Changelog instead of (default) ChangeLog git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4659 0ce88b0d-b2fd-0310-8134-9614164e65ea create_distrib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit dd13e462c16d9b9485dedefc78853141a2d48a79 Author: Ludovic Rousseau Date: Tue Jan 12 21:28:45 2010 +0000 use svn2cl instead of rcs2log now we are on subversion git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4658 0ce88b0d-b2fd-0310-8134-9614164e65ea create_distrib.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 13cdd985fcc849397079a3f1afcb93f2c2ecc206 Author: Ludovic Rousseau Date: Tue Jan 12 21:28:08 2010 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4657 0ce88b0d-b2fd-0310-8134-9614164e65ea gscriptor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 747430abea6481200b6e66f6a036ee2f2ea02474 Author: Ludovic Rousseau Date: Tue Jan 12 20:56:16 2010 +0000 ReaderConfig(): escape metacharacters []() in the reader name when using reader name as a pattern matching git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4656 0ce88b0d-b2fd-0310-8134-9614164e65ea gscriptor | 7 +++++++ 1 file changed, 7 insertions(+) commit 425b3a62e4dcfe76ca951307388a16aafcd8610c Author: Ludovic Rousseau Date: Sat Jan 9 14:49:31 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4648 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit d22a65b598f0ed870dbd02e0e8eecb45267f4726 Author: Ludovic Rousseau Date: Sat Jan 9 10:45:56 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4647 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit d4d0b9f68ffc09b3c7bf678fda3d6960f4df274e Author: Ludovic Rousseau Date: Fri Jan 8 12:25:01 2010 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4643 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) commit 9ee6ba89f5202fea1663d5aaca3871a037aa06bf Author: Ludovic Rousseau Date: Wed Jan 6 17:06:13 2010 +0000 simplify the Austrian Quick E-purse cards. Every quick card's identification number is BCD encoded in the four contiguous free bytes in the ATR regular expression git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4642 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) commit 760bc215ac33f5be773aa3292f5bbaf2634a9fe0 Author: Ludovic Rousseau Date: Tue Jan 5 17:21:37 2010 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4641 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) commit a6797fc31d01c98f0a19d7225c42ed55e5e2230a Author: Ludovic Rousseau Date: Fri Jan 1 08:30:31 2010 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4626 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit fcb87df7f680ba5fe37c549464472e9e229fefba Author: Ludovic Rousseau Date: Thu Dec 31 11:11:12 2009 +0000 11 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4624 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) commit 4780dde107f3e02651c5aa50a57a763fcaf1083d Author: Ludovic Rousseau Date: Sun Dec 20 19:39:35 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4623 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 4cbb928eada57179ae8c7eff4b70459bdb0b3395 Author: Ludovic Rousseau Date: Fri Dec 18 17:13:53 2009 +0000 reformat git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4622 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 73e93bc47eb9ca918dc90be2761b87e2cf3b69cc Author: Ludovic Rousseau Date: Sat Dec 12 08:00:43 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4609 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit cba89b26ef47165594d11b544c35f79c6bd77c85 Author: Ludovic Rousseau Date: Wed Dec 9 07:26:29 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4595 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 0ce85a5212f7d56727c089e0b7386afd03398738 Author: Ludovic Rousseau Date: Sat Nov 28 15:00:21 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4581 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit e7834f69eb9fb0d87da62f255612298ac04426c7 Author: Ludovic Rousseau Date: Fri Nov 27 14:39:57 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4578 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++++++ 1 file changed, 8 insertions(+) commit 1784779251dab675c267c3eb87d077bd6f30475e Author: Ludovic Rousseau Date: Wed Nov 25 10:32:58 2009 +0000 remove trailing spaces git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4572 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) commit a036bc1b4d2ec054bbc0d728fc5c98cb5560a130 Author: Ludovic Rousseau Date: Wed Nov 25 10:32:08 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4571 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 97be46624d609f2f8e7792cffc5067edc122ba90 Author: Ludovic Rousseau Date: Sun Nov 22 20:31:59 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4565 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 1ea91ad78ad12f07d9a814743516687cc1be5aec Author: Ludovic Rousseau Date: Sat Nov 21 07:59:07 2009 +0000 add 2 ATR descriptions git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4564 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 ++ 1 file changed, 2 insertions(+) commit fa42839e8ab30b07ad8de920019439d6f22cf468 Author: Ludovic Rousseau Date: Thu Nov 19 16:48:45 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4563 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 4b7db48e154453d8e9b074550faa8625cc52de64 Author: Ludovic Rousseau Date: Wed Nov 18 07:25:41 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4555 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 38e0595f173f03fd1fd555d2237c0c80691f79e7 Author: Ludovic Rousseau Date: Fri Nov 13 20:26:05 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4546 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit c54f4f1d03eded1c06806c2659e3c5bc1285c865 Author: Ludovic Rousseau Date: Wed Nov 11 13:26:09 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4543 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit dcb5d15e63f03d1d3c9221e7d96067bcd1909428 Author: Ludovic Rousseau Date: Sun Nov 8 19:21:59 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4542 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit d5956689021763d6a5325473b6ac79db7aa87c7e Author: Ludovic Rousseau Date: Sun Nov 8 16:53:19 2009 +0000 add an ATR description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4541 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit efa25bb57870866781e4e808506003d2d8595eff Author: Ludovic Rousseau Date: Fri Nov 6 19:14:27 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4539 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 9db735ec19ab3bccecf744d38adcb475262e2d04 Author: Ludovic Rousseau Date: Wed Oct 28 16:37:00 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4526 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 404eb0e1cedbad7276c3b6a908a005ecdd879bcf Author: Ludovic Rousseau Date: Sun Oct 25 08:20:02 2009 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4506 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) commit 75ad626e6c82806d62aa8577f8b0d5f9316bbe97 Author: Ludovic Rousseau Date: Sat Oct 24 14:19:25 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4504 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 9c82268d512ee0db5b6cb902f8d161f92eb2cced Author: Ludovic Rousseau Date: Fri Oct 23 19:16:44 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4503 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit c770db4c0fb255aa8c0f9ee253e0ca11055e8a84 Author: Ludovic Rousseau Date: Wed Oct 21 13:40:47 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4500 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 6ed129b5c1314799b8616bb6dd7d5cf3ceea2be2 Author: Ludovic Rousseau Date: Sat Oct 17 06:57:25 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4495 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit c60ffb918f6a9914954a7165ec90693135510cac Author: Ludovic Rousseau Date: Tue Oct 13 20:37:22 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4492 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 2f703f6c8506062eb6079b1dfc63318a584619b1 Author: Ludovic Rousseau Date: Sun Oct 11 18:42:50 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4478 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 7 +++++++ 1 file changed, 7 insertions(+) commit 4ffcaa6bfbca6ded4bc9cc3cbf3ad3776182fee5 Author: Ludovic Rousseau Date: Fri Oct 9 16:01:24 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4475 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 9620d743bc960e98dcced4e49a8a26c1cbf827af Author: Ludovic Rousseau Date: Tue Oct 6 15:49:19 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4439 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 77fe07edfc93e4f71a46ca054fd6bdadd6ec7c9f Author: Ludovic Rousseau Date: Sun Oct 4 14:15:25 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4424 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit e5653c8d2c42bb9cf433c478e005a72bc78f0fc6 Author: Ludovic Rousseau Date: Thu Oct 1 16:22:49 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4412 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit 8d9159c842026467ee4e8679bf343d49cf92c6b5 Author: Ludovic Rousseau Date: Tue Sep 29 16:19:57 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4409 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 929f9fdb59aab4c21d47032b380e06bdbc597b02 Author: Ludovic Rousseau Date: Sat Sep 26 20:39:17 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4398 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 5d547258da8c2e609bd5eab2e338e0d2473d8d47 Author: Ludovic Rousseau Date: Wed Sep 23 18:29:36 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4396 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 8a9fb6c9342b9a1563031bd160c88ea72dbd962a Author: Ludovic Rousseau Date: Tue Sep 22 16:19:09 2009 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4394 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit 760dbdcdcb74a3e33cd4f4c63ef3bdfdbcc7c9fd Author: Ludovic Rousseau Date: Wed Sep 9 15:30:14 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4379 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit ad6cbb162d6882f7bbd0d2443d172807dcf7e46c Author: Ludovic Rousseau Date: Tue Sep 8 18:33:08 2009 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4377 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 +++++++++ 1 file changed, 9 insertions(+) commit 2a45aa4dc9f8fab0625b2d90032c2b7a2d5c72fe Author: Ludovic Rousseau Date: Sat Sep 5 13:34:17 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4376 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit ec3badc9e4e8921c957e5ee82d5a3837abf3d868 Author: Ludovic Rousseau Date: Sun Aug 23 15:07:14 2009 +0000 add URL for Carta regionale dei servizi - Regione Sicilia git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4365 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit 72725fdd60d770e54ebbe2b61f64a307a4eb0219 Author: Ludovic Rousseau Date: Sun Aug 23 15:05:44 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4364 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 96903fe5afd55da48d6dc09192fb1f83597fbe1e Author: Ludovic Rousseau Date: Sun Aug 23 15:00:51 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4363 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit c2c72a0df2a36e6096a562dd58640f8c34c085d6 Author: Ludovic Rousseau Date: Fri Jul 31 20:26:02 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4362 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 5 +++++ 1 file changed, 5 insertions(+) commit 45b08dca1364d866f65e9109f65dbc4f640a9014 Author: Ludovic Rousseau Date: Fri Jul 31 20:20:58 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4361 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 3781a0095a3c1e77cc5f19b7fec649078ff568d3 Author: Ludovic Rousseau Date: Wed Jul 29 21:20:03 2009 +0000 replace ' ' by ' ' git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4351 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit a8691ce549807bb4ce6a2b513cebd480814b9f40 Author: Ludovic Rousseau Date: Thu Jul 16 18:04:50 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4317 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit b0ad109f94b4b437fe35606f2c663715c5b20eb5 Author: Ludovic Rousseau Date: Wed Jul 15 21:41:25 2009 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4314 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) commit 9ad1dd37ac818a33a04a5764a2f280361c6d022c Author: Ludovic Rousseau Date: Sun Jul 5 10:56:11 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4301 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 47b9c1fe47ec0055f9443cae45e24909dc74fffc Author: Ludovic Rousseau Date: Sat Jul 4 07:23:32 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4300 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) commit 04c535d13583a5859109667dbd2d96df6277c069 Author: Ludovic Rousseau Date: Thu Jun 25 15:42:03 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4275 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit d6555ddc689b39d02687ce075f8752ed7cb71564 Author: Ludovic Rousseau Date: Sun Jun 21 10:03:43 2009 +0000 correct typos git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4268 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) commit 0f172460b78b8bc8d0280ffa50f00ac1806791c2 Author: Ludovic Rousseau Date: Sat Jun 20 14:28:27 2009 +0000 10 ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4265 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) commit 0f15055729ec02a14355c82c3cd5d810760c24a5 Author: Ludovic Rousseau Date: Tue Jun 16 16:03:49 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4261 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 4 ++++ 1 file changed, 4 insertions(+) commit e834610d2eedb954e3c45358b4584cd2b386df2c Author: Ludovic Rousseau Date: Thu Jun 11 18:14:54 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4253 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 57131212435764ce914db02628382307713ff7f6 Author: Ludovic Rousseau Date: Wed Jun 10 09:30:55 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4251 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit 183ab0bf00d2b78747af4fedf1713660358efe27 Author: Ludovic Rousseau Date: Tue Jun 9 15:53:46 2009 +0000 remove extra space character git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4250 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 97b8a9940e0004d1ad26ce4c1335f21efe9f7c0d Author: Ludovic Rousseau Date: Tue May 26 18:46:40 2009 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4225 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) commit 729e7327fb84ca24936b80efba42e3d33097eb0b Author: Ludovic Rousseau Date: Thu May 21 09:48:20 2009 +0000 1 ATR description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4221 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 1 + 1 file changed, 1 insertion(+) commit 10f2bf2610bdaae2277f2be89973f72fa9aa5fc4 Author: Ludovic Rousseau Date: Wed May 20 13:22:27 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4214 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 3 +++ 1 file changed, 3 insertions(+) commit 897433c653e1c0c8e3b985ec646ef43e3f4de650 Author: Ludovic Rousseau Date: Wed May 13 09:03:36 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4202 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 6 ++++++ 1 file changed, 6 insertions(+) commit d8a50312b65a02bd86ab3563fc4ce2f2149287ea Author: Ludovic Rousseau Date: Sun May 10 15:55:57 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4194 0ce88b0d-b2fd-0310-8134-9614164e65ea smartcard_list.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 2bdd59bcc48dfa168e1bd39f73f4a0e2ac9ec2f0 Author: Ludovic Rousseau Date: Sun May 10 15:52:25 2009 +0000 new files git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4193 0ce88b0d-b2fd-0310-8134-9614164e65ea sort_smartcard_list.py | 24 ++++++++++++++++++++++++ sync.sh | 4 ++++ 2 files changed, 28 insertions(+) commit 4def32e46546a8974da0d0046d3f305e1051e1c1 Author: Ludovic Rousseau Date: Sun May 10 15:48:14 2009 +0000 cleanup git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4192 0ce88b0d-b2fd-0310-8134-9614164e65ea ATR_analysis | 852 ++++++++++++++++ ATR_analysis.1p | 46 + LICENCE | 340 +++++++ MANIFEST | 18 + Makefile | 49 + README | 324 ++++++ TODO | 6 + create_distrib.sh | 90 ++ gscriptor | 894 +++++++++++++++++ gscriptor.1p | 45 + gscriptor.desktop | 7 + gscriptor.gtk1.2 | 734 ++++++++++++++ pcsc_scan.1 | 78 ++ pcsc_scan.c | 435 ++++++++ scriptor | 171 ++++ scriptor.1p | 86 ++ smartcard_list.txt | 2481 ++++++++++++++++++++++++++++++++++++++++++++++ test.script | 25 + trunk/ATR_analysis | 852 ---------------- trunk/ATR_analysis.1p | 46 - trunk/LICENCE | 340 ------- trunk/MANIFEST | 18 - trunk/Makefile | 49 - trunk/README | 324 ------ trunk/TODO | 6 - trunk/create_distrib.sh | 90 -- trunk/gscriptor | 894 ----------------- trunk/gscriptor.1p | 45 - trunk/gscriptor.desktop | 7 - trunk/gscriptor.gtk1.2 | 734 -------------- trunk/pcsc_scan.1 | 78 -- trunk/pcsc_scan.c | 435 -------- trunk/scriptor | 171 ---- trunk/scriptor.1p | 86 -- trunk/smartcard_list.txt | 2481 ---------------------------------------------- trunk/test.script | 25 - 36 files changed, 6681 insertions(+), 6681 deletions(-) commit ee215f050953e4c3b3b0fb6cb81505f0f8681d9e Author: Ludovic Rousseau Date: Sun May 10 15:47:07 2009 +0000 cleanup git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4191 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/README/ATR_analysis | 411 ------- tags/README/ATR_analysis.1p | 47 - tags/README/LICENCE | 340 ------ tags/README/MANIFEST | 16 - tags/README/Makefile | 44 - tags/README/README | 144 --- tags/README/TODO | 6 - tags/README/create_distrib.sh | 79 -- tags/README/gscriptor | 794 ------------ tags/README/gscriptor.1p | 45 - tags/README/pcsc_scan.1 | 78 -- tags/README/pcsc_scan.c | 307 ----- tags/README/scriptor | 116 -- tags/README/scriptor.1p | 79 -- tags/README/smartcard_list.txt | 345 ------ tags/README/test.script | 25 - tags/rel-1_2_1/ATR_analysis | 411 ------- tags/rel-1_2_1/ATR_analysis.1p | 47 - tags/rel-1_2_1/LICENCE | 340 ------ tags/rel-1_2_1/MANIFEST | 16 - tags/rel-1_2_1/Makefile | 44 - tags/rel-1_2_1/README | 144 --- tags/rel-1_2_1/TODO | 6 - tags/rel-1_2_1/create_distrib.sh | 79 -- tags/rel-1_2_1/gscriptor | 794 ------------ tags/rel-1_2_1/gscriptor.1p | 45 - tags/rel-1_2_1/pcsc_scan.1 | 78 -- tags/rel-1_2_1/pcsc_scan.c | 307 ----- tags/rel-1_2_1/scriptor | 116 -- tags/rel-1_2_1/scriptor.1p | 79 -- tags/rel-1_2_1/smartcard_list.txt | 345 ------ tags/rel-1_2_1/test.script | 25 - tags/rel-1_2_2/ATR_analysis | 412 ------- tags/rel-1_2_2/ATR_analysis.1p | 47 - tags/rel-1_2_2/LICENCE | 340 ------ tags/rel-1_2_2/MANIFEST | 16 - tags/rel-1_2_2/Makefile | 45 - tags/rel-1_2_2/README | 151 --- tags/rel-1_2_2/TODO | 6 - tags/rel-1_2_2/create_distrib.sh | 87 -- tags/rel-1_2_2/gscriptor | 794 ------------ tags/rel-1_2_2/gscriptor.1p | 45 - tags/rel-1_2_2/pcsc_scan.1 | 78 -- tags/rel-1_2_2/pcsc_scan.c | 311 ----- tags/rel-1_2_2/scriptor | 116 -- tags/rel-1_2_2/scriptor.1p | 79 -- tags/rel-1_2_2/smartcard_list.txt | 359 ------ tags/rel-1_2_2/test.script | 25 - tags/rel-1_2_3/ATR_analysis | 415 ------- tags/rel-1_2_3/ATR_analysis.1p | 47 - tags/rel-1_2_3/LICENCE | 340 ------ tags/rel-1_2_3/MANIFEST | 16 - tags/rel-1_2_3/Makefile | 45 - tags/rel-1_2_3/README | 156 --- tags/rel-1_2_3/TODO | 6 - tags/rel-1_2_3/create_distrib.sh | 87 -- tags/rel-1_2_3/gscriptor | 794 ------------ tags/rel-1_2_3/gscriptor.1p | 45 - tags/rel-1_2_3/pcsc_scan.1 | 78 -- tags/rel-1_2_3/pcsc_scan.c | 311 ----- tags/rel-1_2_3/scriptor | 116 -- tags/rel-1_2_3/scriptor.1p | 79 -- tags/rel-1_2_3/smartcard_list.txt | 448 ------- tags/rel-1_2_3/test.script | 25 - tags/rel-1_2_4/ATR_analysis | 415 ------- tags/rel-1_2_4/ATR_analysis.1p | 47 - tags/rel-1_2_4/LICENCE | 340 ------ tags/rel-1_2_4/MANIFEST | 16 - tags/rel-1_2_4/Makefile | 46 - tags/rel-1_2_4/README | 160 --- tags/rel-1_2_4/TODO | 6 - tags/rel-1_2_4/create_distrib.sh | 87 -- tags/rel-1_2_4/gscriptor | 794 ------------ tags/rel-1_2_4/gscriptor.1p | 45 - tags/rel-1_2_4/pcsc_scan.1 | 78 -- tags/rel-1_2_4/pcsc_scan.c | 311 ----- tags/rel-1_2_4/scriptor | 116 -- tags/rel-1_2_4/scriptor.1p | 79 -- tags/rel-1_2_4/smartcard_list.txt | 496 -------- tags/rel-1_2_4/test.script | 25 - tags/rel-1_2_5/ATR_analysis | 415 ------- tags/rel-1_2_5/ATR_analysis.1p | 47 - tags/rel-1_2_5/LICENCE | 340 ------ tags/rel-1_2_5/MANIFEST | 16 - tags/rel-1_2_5/Makefile | 46 - tags/rel-1_2_5/README | 165 --- tags/rel-1_2_5/TODO | 6 - tags/rel-1_2_5/create_distrib.sh | 87 -- tags/rel-1_2_5/gscriptor | 731 ----------- tags/rel-1_2_5/gscriptor.1p | 45 - tags/rel-1_2_5/pcsc_scan.1 | 78 -- tags/rel-1_2_5/pcsc_scan.c | 280 ----- tags/rel-1_2_5/scriptor | 108 -- tags/rel-1_2_5/scriptor.1p | 79 -- tags/rel-1_2_5/smartcard_list.txt | 587 --------- tags/rel-1_2_5/test.script | 25 - tags/rel-1_3_0/ATR_analysis | 415 ------- tags/rel-1_3_0/ATR_analysis.1p | 47 - tags/rel-1_3_0/LICENCE | 340 ------ tags/rel-1_3_0/MANIFEST | 16 - tags/rel-1_3_0/Makefile | 46 - tags/rel-1_3_0/README | 170 --- tags/rel-1_3_0/TODO | 6 - tags/rel-1_3_0/create_distrib.sh | 87 -- tags/rel-1_3_0/gscriptor | 731 ----------- tags/rel-1_3_0/gscriptor.1p | 45 - tags/rel-1_3_0/pcsc_scan.1 | 78 -- tags/rel-1_3_0/pcsc_scan.c | 294 ----- tags/rel-1_3_0/scriptor | 108 -- tags/rel-1_3_0/scriptor.1p | 79 -- tags/rel-1_3_0/smartcard_list.txt | 599 --------- tags/rel-1_3_0/test.script | 25 - tags/rel-1_3_1/ATR_analysis | 424 ------- tags/rel-1_3_1/ATR_analysis.1p | 47 - tags/rel-1_3_1/LICENCE | 340 ------ tags/rel-1_3_1/MANIFEST | 16 - tags/rel-1_3_1/Makefile | 46 - tags/rel-1_3_1/README | 178 --- tags/rel-1_3_1/TODO | 6 - tags/rel-1_3_1/create_distrib.sh | 87 -- tags/rel-1_3_1/gscriptor | 731 ----------- tags/rel-1_3_1/gscriptor.1p | 45 - tags/rel-1_3_1/pcsc_scan.1 | 78 -- tags/rel-1_3_1/pcsc_scan.c | 294 ----- tags/rel-1_3_1/scriptor | 130 -- tags/rel-1_3_1/scriptor.1p | 86 -- tags/rel-1_3_1/smartcard_list.txt | 674 ----------- tags/rel-1_3_1/test.script | 25 - tags/rel-1_3_2/ATR_analysis | 424 ------- tags/rel-1_3_2/ATR_analysis.1p | 47 - tags/rel-1_3_2/LICENCE | 340 ------ tags/rel-1_3_2/MANIFEST | 16 - tags/rel-1_3_2/Makefile | 46 - tags/rel-1_3_2/README | 188 --- tags/rel-1_3_2/TODO | 6 - tags/rel-1_3_2/create_distrib.sh | 87 -- tags/rel-1_3_2/gscriptor | 731 ----------- tags/rel-1_3_2/gscriptor.1p | 45 - tags/rel-1_3_2/pcsc_scan.1 | 78 -- tags/rel-1_3_2/pcsc_scan.c | 294 ----- tags/rel-1_3_2/scriptor | 145 --- tags/rel-1_3_2/scriptor.1p | 86 -- tags/rel-1_3_2/smartcard_list.txt | 722 ----------- tags/rel-1_3_2/test.script | 25 - tags/rel-1_3_4/ATR_analysis | 424 ------- tags/rel-1_3_4/ATR_analysis.1p | 47 - tags/rel-1_3_4/LICENCE | 340 ------ tags/rel-1_3_4/MANIFEST | 16 - tags/rel-1_3_4/Makefile | 49 - tags/rel-1_3_4/README | 202 ---- tags/rel-1_3_4/TODO | 6 - tags/rel-1_3_4/create_distrib.sh | 87 -- tags/rel-1_3_4/gscriptor | 731 ----------- tags/rel-1_3_4/gscriptor.1p | 45 - tags/rel-1_3_4/pcsc_scan.1 | 78 -- tags/rel-1_3_4/pcsc_scan.c | 335 ------ tags/rel-1_3_4/scriptor | 145 --- tags/rel-1_3_4/scriptor.1p | 86 -- tags/rel-1_3_4/smartcard_list.txt | 783 ------------ tags/rel-1_3_4/test.script | 25 - tags/rel-1_4_0/ATR_analysis | 424 ------- tags/rel-1_4_0/ATR_analysis.1p | 47 - tags/rel-1_4_0/LICENCE | 340 ------ tags/rel-1_4_0/MANIFEST | 17 - tags/rel-1_4_0/Makefile | 49 - tags/rel-1_4_0/README | 207 ---- tags/rel-1_4_0/TODO | 6 - tags/rel-1_4_0/create_distrib.sh | 87 -- tags/rel-1_4_0/gscriptor | 847 ------------- tags/rel-1_4_0/gscriptor.1p | 45 - tags/rel-1_4_0/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_0/pcsc_scan.1 | 78 -- tags/rel-1_4_0/pcsc_scan.c | 335 ------ tags/rel-1_4_0/scriptor | 150 --- tags/rel-1_4_0/scriptor.1p | 86 -- tags/rel-1_4_0/smartcard_list.txt | 822 ------------- tags/rel-1_4_0/test.script | 25 - tags/rel-1_4_1/ATR_analysis | 423 ------- tags/rel-1_4_1/ATR_analysis.1p | 47 - tags/rel-1_4_1/LICENCE | 340 ------ tags/rel-1_4_1/MANIFEST | 17 - tags/rel-1_4_1/Makefile | 49 - tags/rel-1_4_1/README | 216 ---- tags/rel-1_4_1/TODO | 6 - tags/rel-1_4_1/create_distrib.sh | 87 -- tags/rel-1_4_1/gscriptor | 853 ------------- tags/rel-1_4_1/gscriptor.1p | 45 - tags/rel-1_4_1/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_1/pcsc_scan.1 | 78 -- tags/rel-1_4_1/pcsc_scan.c | 335 ------ tags/rel-1_4_1/scriptor | 150 --- tags/rel-1_4_1/scriptor.1p | 86 -- tags/rel-1_4_1/smartcard_list.txt | 969 --------------- tags/rel-1_4_1/test.script | 25 - tags/rel-1_4_11/ATR_analysis | 829 ------------- tags/rel-1_4_11/ATR_analysis.1p | 46 - tags/rel-1_4_11/LICENCE | 340 ------ tags/rel-1_4_11/MANIFEST | 18 - tags/rel-1_4_11/Makefile | 49 - tags/rel-1_4_11/README | 298 ----- tags/rel-1_4_11/TODO | 6 - tags/rel-1_4_11/create_distrib.sh | 90 -- tags/rel-1_4_11/gscriptor | 894 -------------- tags/rel-1_4_11/gscriptor.1p | 45 - tags/rel-1_4_11/gscriptor.desktop | 7 - tags/rel-1_4_11/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_11/pcsc_scan.1 | 78 -- tags/rel-1_4_11/pcsc_scan.c | 384 ------ tags/rel-1_4_11/scriptor | 171 --- tags/rel-1_4_11/scriptor.1p | 86 -- tags/rel-1_4_11/smartcard_list.txt | 1871 ----------------------------- tags/rel-1_4_11/test.script | 25 - tags/rel-1_4_12/ATR_analysis | 829 ------------- tags/rel-1_4_12/ATR_analysis.1p | 46 - tags/rel-1_4_12/LICENCE | 340 ------ tags/rel-1_4_12/MANIFEST | 18 - tags/rel-1_4_12/Makefile | 49 - tags/rel-1_4_12/README | 302 ----- tags/rel-1_4_12/TODO | 6 - tags/rel-1_4_12/create_distrib.sh | 90 -- tags/rel-1_4_12/gscriptor | 894 -------------- tags/rel-1_4_12/gscriptor.1p | 45 - tags/rel-1_4_12/gscriptor.desktop | 7 - tags/rel-1_4_12/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_12/pcsc_scan.1 | 78 -- tags/rel-1_4_12/pcsc_scan.c | 389 ------ tags/rel-1_4_12/scriptor | 171 --- tags/rel-1_4_12/scriptor.1p | 86 -- tags/rel-1_4_12/smartcard_list.txt | 1924 ----------------------------- tags/rel-1_4_12/test.script | 25 - tags/rel-1_4_13/ATR_analysis | 829 ------------- tags/rel-1_4_13/ATR_analysis.1p | 46 - tags/rel-1_4_13/LICENCE | 340 ------ tags/rel-1_4_13/MANIFEST | 18 - tags/rel-1_4_13/Makefile | 49 - tags/rel-1_4_13/README | 306 ----- tags/rel-1_4_13/TODO | 6 - tags/rel-1_4_13/create_distrib.sh | 90 -- tags/rel-1_4_13/gscriptor | 894 -------------- tags/rel-1_4_13/gscriptor.1p | 45 - tags/rel-1_4_13/gscriptor.desktop | 7 - tags/rel-1_4_13/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_13/pcsc_scan.1 | 78 -- tags/rel-1_4_13/pcsc_scan.c | 390 ------ tags/rel-1_4_13/scriptor | 171 --- tags/rel-1_4_13/scriptor.1p | 86 -- tags/rel-1_4_13/smartcard_list.txt | 2027 ------------------------------- tags/rel-1_4_13/test.script | 25 - tags/rel-1_4_14/ATR_analysis | 830 ------------- tags/rel-1_4_14/ATR_analysis.1p | 46 - tags/rel-1_4_14/LICENCE | 340 ------ tags/rel-1_4_14/MANIFEST | 18 - tags/rel-1_4_14/Makefile | 49 - tags/rel-1_4_14/README | 314 ----- tags/rel-1_4_14/TODO | 6 - tags/rel-1_4_14/create_distrib.sh | 90 -- tags/rel-1_4_14/gscriptor | 894 -------------- tags/rel-1_4_14/gscriptor.1p | 45 - tags/rel-1_4_14/gscriptor.desktop | 7 - tags/rel-1_4_14/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_14/pcsc_scan.1 | 78 -- tags/rel-1_4_14/pcsc_scan.c | 390 ------ tags/rel-1_4_14/scriptor | 171 --- tags/rel-1_4_14/scriptor.1p | 86 -- tags/rel-1_4_14/smartcard_list.txt | 2097 -------------------------------- tags/rel-1_4_14/test.script | 25 - tags/rel-1_4_15/ATR_analysis | 844 ------------- tags/rel-1_4_15/ATR_analysis.1p | 46 - tags/rel-1_4_15/LICENCE | 340 ------ tags/rel-1_4_15/MANIFEST | 18 - tags/rel-1_4_15/Makefile | 49 - tags/rel-1_4_15/README | 324 ----- tags/rel-1_4_15/TODO | 6 - tags/rel-1_4_15/create_distrib.sh | 90 -- tags/rel-1_4_15/gscriptor | 894 -------------- tags/rel-1_4_15/gscriptor.1p | 45 - tags/rel-1_4_15/gscriptor.desktop | 7 - tags/rel-1_4_15/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_15/pcsc_scan.1 | 78 -- tags/rel-1_4_15/pcsc_scan.c | 424 ------- tags/rel-1_4_15/scriptor | 171 --- tags/rel-1_4_15/scriptor.1p | 86 -- tags/rel-1_4_15/smartcard_list.txt | 2338 ------------------------------------ tags/rel-1_4_15/test.script | 25 - tags/rel-1_4_2/ATR_analysis | 423 ------- tags/rel-1_4_2/ATR_analysis.1p | 46 - tags/rel-1_4_2/LICENCE | 340 ------ tags/rel-1_4_2/MANIFEST | 18 - tags/rel-1_4_2/Makefile | 49 - tags/rel-1_4_2/README | 222 ---- tags/rel-1_4_2/TODO | 6 - tags/rel-1_4_2/create_distrib.sh | 87 -- tags/rel-1_4_2/gscriptor | 853 ------------- tags/rel-1_4_2/gscriptor.1p | 45 - tags/rel-1_4_2/gscriptor.desktop | 8 - tags/rel-1_4_2/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_2/pcsc_scan.1 | 78 -- tags/rel-1_4_2/pcsc_scan.c | 367 ------ tags/rel-1_4_2/scriptor | 150 --- tags/rel-1_4_2/scriptor.1p | 86 -- tags/rel-1_4_2/smartcard_list.txt | 1166 ------------------ tags/rel-1_4_2/test.script | 25 - tags/rel-1_4_3/ATR_analysis | 423 ------- tags/rel-1_4_3/ATR_analysis.1p | 46 - tags/rel-1_4_3/LICENCE | 340 ------ tags/rel-1_4_3/MANIFEST | 18 - tags/rel-1_4_3/Makefile | 49 - tags/rel-1_4_3/README | 228 ---- tags/rel-1_4_3/TODO | 6 - tags/rel-1_4_3/create_distrib.sh | 87 -- tags/rel-1_4_3/gscriptor | 853 ------------- tags/rel-1_4_3/gscriptor.1p | 45 - tags/rel-1_4_3/gscriptor.desktop | 8 - tags/rel-1_4_3/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_3/pcsc_scan.1 | 78 -- tags/rel-1_4_3/pcsc_scan.c | 377 ------ tags/rel-1_4_3/scriptor | 150 --- tags/rel-1_4_3/scriptor.1p | 86 -- tags/rel-1_4_3/smartcard_list.txt | 1166 ------------------ tags/rel-1_4_3/test.script | 25 - tags/rel-1_4_5/ATR_analysis | 804 ------------- tags/rel-1_4_5/ATR_analysis.1p | 46 - tags/rel-1_4_5/LICENCE | 340 ------ tags/rel-1_4_5/MANIFEST | 18 - tags/rel-1_4_5/Makefile | 49 - tags/rel-1_4_5/README | 255 ---- tags/rel-1_4_5/TODO | 6 - tags/rel-1_4_5/create_distrib.sh | 87 -- tags/rel-1_4_5/gscriptor | 867 ------------- tags/rel-1_4_5/gscriptor.1p | 45 - tags/rel-1_4_5/gscriptor.desktop | 8 - tags/rel-1_4_5/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_5/pcsc_scan.1 | 78 -- tags/rel-1_4_5/pcsc_scan.c | 377 ------ tags/rel-1_4_5/scriptor | 150 --- tags/rel-1_4_5/scriptor.1p | 86 -- tags/rel-1_4_5/smartcard_list.txt | 1213 ------------------- tags/rel-1_4_5/test.script | 25 - tags/rel-1_4_6/ATR_analysis | 804 ------------- tags/rel-1_4_6/ATR_analysis.1p | 46 - tags/rel-1_4_6/LICENCE | 340 ------ tags/rel-1_4_6/MANIFEST | 18 - tags/rel-1_4_6/Makefile | 49 - tags/rel-1_4_6/README | 261 ---- tags/rel-1_4_6/TODO | 6 - tags/rel-1_4_6/create_distrib.sh | 87 -- tags/rel-1_4_6/gscriptor | 893 -------------- tags/rel-1_4_6/gscriptor.1p | 45 - tags/rel-1_4_6/gscriptor.desktop | 8 - tags/rel-1_4_6/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_6/pcsc_scan.1 | 78 -- tags/rel-1_4_6/pcsc_scan.c | 377 ------ tags/rel-1_4_6/scriptor | 167 --- tags/rel-1_4_6/scriptor.1p | 86 -- tags/rel-1_4_6/smartcard_list.txt | 1300 -------------------- tags/rel-1_4_6/test.script | 25 - tags/rel-1_4_7/ATR_analysis | 804 ------------- tags/rel-1_4_7/ATR_analysis.1p | 46 - tags/rel-1_4_7/LICENCE | 340 ------ tags/rel-1_4_7/MANIFEST | 18 - tags/rel-1_4_7/Makefile | 49 - tags/rel-1_4_7/README | 267 ---- tags/rel-1_4_7/TODO | 6 - tags/rel-1_4_7/create_distrib.sh | 87 -- tags/rel-1_4_7/gscriptor | 893 -------------- tags/rel-1_4_7/gscriptor.1p | 45 - tags/rel-1_4_7/gscriptor.desktop | 8 - tags/rel-1_4_7/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_7/pcsc_scan.1 | 78 -- tags/rel-1_4_7/pcsc_scan.c | 383 ------ tags/rel-1_4_7/scriptor | 167 --- tags/rel-1_4_7/scriptor.1p | 86 -- tags/rel-1_4_7/smartcard_list.txt | 1333 -------------------- tags/rel-1_4_7/test.script | 25 - tags/rel-1_4_9/ATR_analysis | 826 ------------- tags/rel-1_4_9/ATR_analysis.1p | 46 - tags/rel-1_4_9/LICENCE | 340 ------ tags/rel-1_4_9/MANIFEST | 18 - tags/rel-1_4_9/Makefile | 49 - tags/rel-1_4_9/README | 287 ----- tags/rel-1_4_9/TODO | 6 - tags/rel-1_4_9/create_distrib.sh | 87 -- tags/rel-1_4_9/gscriptor | 893 -------------- tags/rel-1_4_9/gscriptor.1p | 45 - tags/rel-1_4_9/gscriptor.desktop | 8 - tags/rel-1_4_9/gscriptor.gtk1.2 | 734 ----------- tags/rel-1_4_9/pcsc_scan.1 | 78 -- tags/rel-1_4_9/pcsc_scan.c | 384 ------ tags/rel-1_4_9/scriptor | 171 --- tags/rel-1_4_9/scriptor.1p | 86 -- tags/rel-1_4_9/smartcard_list.txt | 1609 ------------------------- tags/rel-1_4_9/test.script | 25 - tags/rel_1-0-0/Makefile | 20 - tags/rel_1-0-0/README | 37 - tags/rel_1-0-0/TODO | 8 - tags/rel_1-0-0/create_distrib.sh | 33 - tags/rel_1-0-0/gscriptor | 791 ------------ tags/rel_1-0-0/pcsc_scan.c | 182 --- tags/rel_1-0-0/scriptor | 113 -- tags/rel_1-0-0/test.script | 13 - tags/rel_1-0-1/MANIFEST | 10 - tags/rel_1-0-1/Makefile | 20 - tags/rel_1-0-1/README | 37 - tags/rel_1-0-1/TODO | 8 - tags/rel_1-0-1/create_distrib.sh | 79 -- tags/rel_1-0-1/gscriptor | 791 ------------ tags/rel_1-0-1/pcsc_scan.c | 182 --- tags/rel_1-0-1/scriptor | 113 -- tags/rel_1-0-1/test.script | 13 - tags/rel_1-0-2/LICENCE | 340 ------ tags/rel_1-0-2/MANIFEST | 13 - tags/rel_1-0-2/Makefile | 20 - tags/rel_1-0-2/README | 39 - tags/rel_1-0-2/TODO | 7 - tags/rel_1-0-2/create_distrib.sh | 79 -- tags/rel_1-0-2/gscriptor | 791 ------------ tags/rel_1-0-2/gscriptor.1p | 45 - tags/rel_1-0-2/pcsc_scan.1 | 64 - tags/rel_1-0-2/pcsc_scan.c | 186 --- tags/rel_1-0-2/scriptor | 113 -- tags/rel_1-0-2/scriptor.1p | 79 -- tags/rel_1-0-2/test.script | 25 - tags/rel_1-0-3/LICENCE | 340 ------ tags/rel_1-0-3/MANIFEST | 13 - tags/rel_1-0-3/Makefile | 35 - tags/rel_1-0-3/README | 50 - tags/rel_1-0-3/TODO | 7 - tags/rel_1-0-3/create_distrib.sh | 79 -- tags/rel_1-0-3/gscriptor | 791 ------------ tags/rel_1-0-3/gscriptor.1p | 45 - tags/rel_1-0-3/pcsc_scan.1 | 64 - tags/rel_1-0-3/pcsc_scan.c | 196 --- tags/rel_1-0-3/scriptor | 113 -- tags/rel_1-0-3/scriptor.1p | 79 -- tags/rel_1-0-3/test.script | 25 - tags/rel_1-0-4/LICENCE | 340 ------ tags/rel_1-0-4/MANIFEST | 13 - tags/rel_1-0-4/Makefile | 35 - tags/rel_1-0-4/README | 106 -- tags/rel_1-0-4/TODO | 6 - tags/rel_1-0-4/create_distrib.sh | 79 -- tags/rel_1-0-4/gscriptor | 794 ------------ tags/rel_1-0-4/gscriptor.1p | 45 - tags/rel_1-0-4/pcsc_scan.1 | 64 - tags/rel_1-0-4/pcsc_scan.c | 196 --- tags/rel_1-0-4/scriptor | 116 -- tags/rel_1-0-4/scriptor.1p | 79 -- tags/rel_1-0-4/test.script | 25 - tags/rel_1-0-7/gscriptor | 787 ------------ tags/rel_1-0-7/scriptor | 109 -- tags/rel_1-0-7/test.script | 13 - tags/rel_1_1_0/ATR_analysis | 334 ------ tags/rel_1_1_0/ATR_analysis.1p | 27 - tags/rel_1_1_0/LICENCE | 340 ------ tags/rel_1_1_0/MANIFEST | 15 - tags/rel_1_1_0/Makefile | 36 - tags/rel_1_1_0/README | 115 -- tags/rel_1_1_0/TODO | 6 - tags/rel_1_1_0/create_distrib.sh | 79 -- tags/rel_1_1_0/gscriptor | 794 ------------ tags/rel_1_1_0/gscriptor.1p | 45 - tags/rel_1_1_0/pcsc_scan.1 | 78 -- tags/rel_1_1_0/pcsc_scan.c | 307 ----- tags/rel_1_1_0/scriptor | 116 -- tags/rel_1_1_0/scriptor.1p | 79 -- tags/rel_1_1_0/test.script | 25 - tags/rel_1_2_0/ATR_analysis | 411 ------- tags/rel_1_2_0/ATR_analysis.1p | 27 - tags/rel_1_2_0/LICENCE | 340 ------ tags/rel_1_2_0/MANIFEST | 16 - tags/rel_1_2_0/Makefile | 44 - tags/rel_1_2_0/README | 140 --- tags/rel_1_2_0/TODO | 6 - tags/rel_1_2_0/create_distrib.sh | 79 -- tags/rel_1_2_0/gscriptor | 794 ------------ tags/rel_1_2_0/gscriptor.1p | 45 - tags/rel_1_2_0/pcsc_scan.1 | 78 -- tags/rel_1_2_0/pcsc_scan.c | 307 ----- tags/rel_1_2_0/scriptor | 116 -- tags/rel_1_2_0/scriptor.1p | 79 -- tags/rel_1_2_0/smartcard_list.txt | 296 ----- tags/rel_1_2_0/test.script | 25 - tags/start/Makefile | 19 - tags/start/pcsc_scan.c | 179 --- 484 files changed, 115689 deletions(-) commit 1d0e76c2318d4a6c342f810743226ded3ede7a74 Author: Ludovic Rousseau Date: Sun May 10 15:45:24 2009 +0000 move pcsc-tools tags in tags/ git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4190 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc-tools/rel-1_2_1/ATR_analysis | 411 ------ pcsc-tools/rel-1_2_1/ATR_analysis.1p | 47 - pcsc-tools/rel-1_2_1/LICENCE | 340 ----- pcsc-tools/rel-1_2_1/MANIFEST | 16 - pcsc-tools/rel-1_2_1/Makefile | 44 - pcsc-tools/rel-1_2_1/README | 144 -- pcsc-tools/rel-1_2_1/TODO | 6 - pcsc-tools/rel-1_2_1/create_distrib.sh | 79 - pcsc-tools/rel-1_2_1/gscriptor | 794 ---------- pcsc-tools/rel-1_2_1/gscriptor.1p | 45 - pcsc-tools/rel-1_2_1/pcsc_scan.1 | 78 - pcsc-tools/rel-1_2_1/pcsc_scan.c | 307 ---- pcsc-tools/rel-1_2_1/scriptor | 116 -- pcsc-tools/rel-1_2_1/scriptor.1p | 79 - pcsc-tools/rel-1_2_1/smartcard_list.txt | 345 ----- pcsc-tools/rel-1_2_1/test.script | 25 - pcsc-tools/rel-1_2_2/ATR_analysis | 412 ------ pcsc-tools/rel-1_2_2/ATR_analysis.1p | 47 - pcsc-tools/rel-1_2_2/LICENCE | 340 ----- pcsc-tools/rel-1_2_2/MANIFEST | 16 - pcsc-tools/rel-1_2_2/Makefile | 45 - pcsc-tools/rel-1_2_2/README | 151 -- pcsc-tools/rel-1_2_2/TODO | 6 - pcsc-tools/rel-1_2_2/create_distrib.sh | 87 -- pcsc-tools/rel-1_2_2/gscriptor | 794 ---------- pcsc-tools/rel-1_2_2/gscriptor.1p | 45 - pcsc-tools/rel-1_2_2/pcsc_scan.1 | 78 - pcsc-tools/rel-1_2_2/pcsc_scan.c | 311 ---- pcsc-tools/rel-1_2_2/scriptor | 116 -- pcsc-tools/rel-1_2_2/scriptor.1p | 79 - pcsc-tools/rel-1_2_2/smartcard_list.txt | 359 ----- pcsc-tools/rel-1_2_2/test.script | 25 - pcsc-tools/rel-1_2_3/ATR_analysis | 415 ------ pcsc-tools/rel-1_2_3/ATR_analysis.1p | 47 - pcsc-tools/rel-1_2_3/LICENCE | 340 ----- pcsc-tools/rel-1_2_3/MANIFEST | 16 - pcsc-tools/rel-1_2_3/Makefile | 45 - pcsc-tools/rel-1_2_3/README | 156 -- pcsc-tools/rel-1_2_3/TODO | 6 - pcsc-tools/rel-1_2_3/create_distrib.sh | 87 -- pcsc-tools/rel-1_2_3/gscriptor | 794 ---------- pcsc-tools/rel-1_2_3/gscriptor.1p | 45 - pcsc-tools/rel-1_2_3/pcsc_scan.1 | 78 - pcsc-tools/rel-1_2_3/pcsc_scan.c | 311 ---- pcsc-tools/rel-1_2_3/scriptor | 116 -- pcsc-tools/rel-1_2_3/scriptor.1p | 79 - pcsc-tools/rel-1_2_3/smartcard_list.txt | 448 ------ pcsc-tools/rel-1_2_3/test.script | 25 - pcsc-tools/rel-1_2_4/ATR_analysis | 415 ------ pcsc-tools/rel-1_2_4/ATR_analysis.1p | 47 - pcsc-tools/rel-1_2_4/LICENCE | 340 ----- pcsc-tools/rel-1_2_4/MANIFEST | 16 - pcsc-tools/rel-1_2_4/Makefile | 46 - pcsc-tools/rel-1_2_4/README | 160 -- pcsc-tools/rel-1_2_4/TODO | 6 - pcsc-tools/rel-1_2_4/create_distrib.sh | 87 -- pcsc-tools/rel-1_2_4/gscriptor | 794 ---------- pcsc-tools/rel-1_2_4/gscriptor.1p | 45 - pcsc-tools/rel-1_2_4/pcsc_scan.1 | 78 - pcsc-tools/rel-1_2_4/pcsc_scan.c | 311 ---- pcsc-tools/rel-1_2_4/scriptor | 116 -- pcsc-tools/rel-1_2_4/scriptor.1p | 79 - pcsc-tools/rel-1_2_4/smartcard_list.txt | 496 ------- pcsc-tools/rel-1_2_4/test.script | 25 - pcsc-tools/rel-1_2_5/ATR_analysis | 415 ------ pcsc-tools/rel-1_2_5/ATR_analysis.1p | 47 - pcsc-tools/rel-1_2_5/LICENCE | 340 ----- pcsc-tools/rel-1_2_5/MANIFEST | 16 - pcsc-tools/rel-1_2_5/Makefile | 46 - pcsc-tools/rel-1_2_5/README | 165 --- pcsc-tools/rel-1_2_5/TODO | 6 - pcsc-tools/rel-1_2_5/create_distrib.sh | 87 -- pcsc-tools/rel-1_2_5/gscriptor | 731 ---------- pcsc-tools/rel-1_2_5/gscriptor.1p | 45 - pcsc-tools/rel-1_2_5/pcsc_scan.1 | 78 - pcsc-tools/rel-1_2_5/pcsc_scan.c | 280 ---- pcsc-tools/rel-1_2_5/scriptor | 108 -- pcsc-tools/rel-1_2_5/scriptor.1p | 79 - pcsc-tools/rel-1_2_5/smartcard_list.txt | 587 -------- pcsc-tools/rel-1_2_5/test.script | 25 - pcsc-tools/rel-1_3_0/ATR_analysis | 415 ------ pcsc-tools/rel-1_3_0/ATR_analysis.1p | 47 - pcsc-tools/rel-1_3_0/LICENCE | 340 ----- pcsc-tools/rel-1_3_0/MANIFEST | 16 - pcsc-tools/rel-1_3_0/Makefile | 46 - pcsc-tools/rel-1_3_0/README | 170 --- pcsc-tools/rel-1_3_0/TODO | 6 - pcsc-tools/rel-1_3_0/create_distrib.sh | 87 -- pcsc-tools/rel-1_3_0/gscriptor | 731 ---------- pcsc-tools/rel-1_3_0/gscriptor.1p | 45 - pcsc-tools/rel-1_3_0/pcsc_scan.1 | 78 - pcsc-tools/rel-1_3_0/pcsc_scan.c | 294 ---- pcsc-tools/rel-1_3_0/scriptor | 108 -- pcsc-tools/rel-1_3_0/scriptor.1p | 79 - pcsc-tools/rel-1_3_0/smartcard_list.txt | 599 -------- pcsc-tools/rel-1_3_0/test.script | 25 - pcsc-tools/rel-1_3_1/ATR_analysis | 424 ------ pcsc-tools/rel-1_3_1/ATR_analysis.1p | 47 - pcsc-tools/rel-1_3_1/LICENCE | 340 ----- pcsc-tools/rel-1_3_1/MANIFEST | 16 - pcsc-tools/rel-1_3_1/Makefile | 46 - pcsc-tools/rel-1_3_1/README | 178 --- pcsc-tools/rel-1_3_1/TODO | 6 - pcsc-tools/rel-1_3_1/create_distrib.sh | 87 -- pcsc-tools/rel-1_3_1/gscriptor | 731 ---------- pcsc-tools/rel-1_3_1/gscriptor.1p | 45 - pcsc-tools/rel-1_3_1/pcsc_scan.1 | 78 - pcsc-tools/rel-1_3_1/pcsc_scan.c | 294 ---- pcsc-tools/rel-1_3_1/scriptor | 130 -- pcsc-tools/rel-1_3_1/scriptor.1p | 86 -- pcsc-tools/rel-1_3_1/smartcard_list.txt | 674 --------- pcsc-tools/rel-1_3_1/test.script | 25 - pcsc-tools/rel-1_3_2/ATR_analysis | 424 ------ pcsc-tools/rel-1_3_2/ATR_analysis.1p | 47 - pcsc-tools/rel-1_3_2/LICENCE | 340 ----- pcsc-tools/rel-1_3_2/MANIFEST | 16 - pcsc-tools/rel-1_3_2/Makefile | 46 - pcsc-tools/rel-1_3_2/README | 188 --- pcsc-tools/rel-1_3_2/TODO | 6 - pcsc-tools/rel-1_3_2/create_distrib.sh | 87 -- pcsc-tools/rel-1_3_2/gscriptor | 731 ---------- pcsc-tools/rel-1_3_2/gscriptor.1p | 45 - pcsc-tools/rel-1_3_2/pcsc_scan.1 | 78 - pcsc-tools/rel-1_3_2/pcsc_scan.c | 294 ---- pcsc-tools/rel-1_3_2/scriptor | 145 -- pcsc-tools/rel-1_3_2/scriptor.1p | 86 -- pcsc-tools/rel-1_3_2/smartcard_list.txt | 722 --------- pcsc-tools/rel-1_3_2/test.script | 25 - pcsc-tools/rel-1_3_4/ATR_analysis | 424 ------ pcsc-tools/rel-1_3_4/ATR_analysis.1p | 47 - pcsc-tools/rel-1_3_4/LICENCE | 340 ----- pcsc-tools/rel-1_3_4/MANIFEST | 16 - pcsc-tools/rel-1_3_4/Makefile | 49 - pcsc-tools/rel-1_3_4/README | 202 --- pcsc-tools/rel-1_3_4/TODO | 6 - pcsc-tools/rel-1_3_4/create_distrib.sh | 87 -- pcsc-tools/rel-1_3_4/gscriptor | 731 ---------- pcsc-tools/rel-1_3_4/gscriptor.1p | 45 - pcsc-tools/rel-1_3_4/pcsc_scan.1 | 78 - pcsc-tools/rel-1_3_4/pcsc_scan.c | 335 ----- pcsc-tools/rel-1_3_4/scriptor | 145 -- pcsc-tools/rel-1_3_4/scriptor.1p | 86 -- pcsc-tools/rel-1_3_4/smartcard_list.txt | 783 ---------- pcsc-tools/rel-1_3_4/test.script | 25 - pcsc-tools/rel-1_4_0/ATR_analysis | 424 ------ pcsc-tools/rel-1_4_0/ATR_analysis.1p | 47 - pcsc-tools/rel-1_4_0/LICENCE | 340 ----- pcsc-tools/rel-1_4_0/MANIFEST | 17 - pcsc-tools/rel-1_4_0/Makefile | 49 - pcsc-tools/rel-1_4_0/README | 207 --- pcsc-tools/rel-1_4_0/TODO | 6 - pcsc-tools/rel-1_4_0/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_0/gscriptor | 847 ----------- pcsc-tools/rel-1_4_0/gscriptor.1p | 45 - pcsc-tools/rel-1_4_0/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_0/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_0/pcsc_scan.c | 335 ----- pcsc-tools/rel-1_4_0/scriptor | 150 -- pcsc-tools/rel-1_4_0/scriptor.1p | 86 -- pcsc-tools/rel-1_4_0/smartcard_list.txt | 822 ----------- pcsc-tools/rel-1_4_0/test.script | 25 - pcsc-tools/rel-1_4_1/ATR_analysis | 423 ------ pcsc-tools/rel-1_4_1/ATR_analysis.1p | 47 - pcsc-tools/rel-1_4_1/LICENCE | 340 ----- pcsc-tools/rel-1_4_1/MANIFEST | 17 - pcsc-tools/rel-1_4_1/Makefile | 49 - pcsc-tools/rel-1_4_1/README | 216 --- pcsc-tools/rel-1_4_1/TODO | 6 - pcsc-tools/rel-1_4_1/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_1/gscriptor | 853 ----------- pcsc-tools/rel-1_4_1/gscriptor.1p | 45 - pcsc-tools/rel-1_4_1/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_1/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_1/pcsc_scan.c | 335 ----- pcsc-tools/rel-1_4_1/scriptor | 150 -- pcsc-tools/rel-1_4_1/scriptor.1p | 86 -- pcsc-tools/rel-1_4_1/smartcard_list.txt | 969 ------------- pcsc-tools/rel-1_4_1/test.script | 25 - pcsc-tools/rel-1_4_11/ATR_analysis | 829 ----------- pcsc-tools/rel-1_4_11/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_11/LICENCE | 340 ----- pcsc-tools/rel-1_4_11/MANIFEST | 18 - pcsc-tools/rel-1_4_11/Makefile | 49 - pcsc-tools/rel-1_4_11/README | 298 ---- pcsc-tools/rel-1_4_11/TODO | 6 - pcsc-tools/rel-1_4_11/create_distrib.sh | 90 -- pcsc-tools/rel-1_4_11/gscriptor | 894 ------------ pcsc-tools/rel-1_4_11/gscriptor.1p | 45 - pcsc-tools/rel-1_4_11/gscriptor.desktop | 7 - pcsc-tools/rel-1_4_11/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_11/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_11/pcsc_scan.c | 384 ----- pcsc-tools/rel-1_4_11/scriptor | 171 --- pcsc-tools/rel-1_4_11/scriptor.1p | 86 -- pcsc-tools/rel-1_4_11/smartcard_list.txt | 1871 ------------------------ pcsc-tools/rel-1_4_11/test.script | 25 - pcsc-tools/rel-1_4_12/ATR_analysis | 829 ----------- pcsc-tools/rel-1_4_12/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_12/LICENCE | 340 ----- pcsc-tools/rel-1_4_12/MANIFEST | 18 - pcsc-tools/rel-1_4_12/Makefile | 49 - pcsc-tools/rel-1_4_12/README | 302 ---- pcsc-tools/rel-1_4_12/TODO | 6 - pcsc-tools/rel-1_4_12/create_distrib.sh | 90 -- pcsc-tools/rel-1_4_12/gscriptor | 894 ------------ pcsc-tools/rel-1_4_12/gscriptor.1p | 45 - pcsc-tools/rel-1_4_12/gscriptor.desktop | 7 - pcsc-tools/rel-1_4_12/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_12/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_12/pcsc_scan.c | 389 ----- pcsc-tools/rel-1_4_12/scriptor | 171 --- pcsc-tools/rel-1_4_12/scriptor.1p | 86 -- pcsc-tools/rel-1_4_12/smartcard_list.txt | 1924 ------------------------ pcsc-tools/rel-1_4_12/test.script | 25 - pcsc-tools/rel-1_4_13/ATR_analysis | 829 ----------- pcsc-tools/rel-1_4_13/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_13/LICENCE | 340 ----- pcsc-tools/rel-1_4_13/MANIFEST | 18 - pcsc-tools/rel-1_4_13/Makefile | 49 - pcsc-tools/rel-1_4_13/README | 306 ---- pcsc-tools/rel-1_4_13/TODO | 6 - pcsc-tools/rel-1_4_13/create_distrib.sh | 90 -- pcsc-tools/rel-1_4_13/gscriptor | 894 ------------ pcsc-tools/rel-1_4_13/gscriptor.1p | 45 - pcsc-tools/rel-1_4_13/gscriptor.desktop | 7 - pcsc-tools/rel-1_4_13/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_13/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_13/pcsc_scan.c | 390 ----- pcsc-tools/rel-1_4_13/scriptor | 171 --- pcsc-tools/rel-1_4_13/scriptor.1p | 86 -- pcsc-tools/rel-1_4_13/smartcard_list.txt | 2027 -------------------------- pcsc-tools/rel-1_4_13/test.script | 25 - pcsc-tools/rel-1_4_14/ATR_analysis | 830 ----------- pcsc-tools/rel-1_4_14/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_14/LICENCE | 340 ----- pcsc-tools/rel-1_4_14/MANIFEST | 18 - pcsc-tools/rel-1_4_14/Makefile | 49 - pcsc-tools/rel-1_4_14/README | 314 ---- pcsc-tools/rel-1_4_14/TODO | 6 - pcsc-tools/rel-1_4_14/create_distrib.sh | 90 -- pcsc-tools/rel-1_4_14/gscriptor | 894 ------------ pcsc-tools/rel-1_4_14/gscriptor.1p | 45 - pcsc-tools/rel-1_4_14/gscriptor.desktop | 7 - pcsc-tools/rel-1_4_14/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_14/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_14/pcsc_scan.c | 390 ----- pcsc-tools/rel-1_4_14/scriptor | 171 --- pcsc-tools/rel-1_4_14/scriptor.1p | 86 -- pcsc-tools/rel-1_4_14/smartcard_list.txt | 2097 --------------------------- pcsc-tools/rel-1_4_14/test.script | 25 - pcsc-tools/rel-1_4_15/ATR_analysis | 844 ----------- pcsc-tools/rel-1_4_15/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_15/LICENCE | 340 ----- pcsc-tools/rel-1_4_15/MANIFEST | 18 - pcsc-tools/rel-1_4_15/Makefile | 49 - pcsc-tools/rel-1_4_15/README | 324 ----- pcsc-tools/rel-1_4_15/TODO | 6 - pcsc-tools/rel-1_4_15/create_distrib.sh | 90 -- pcsc-tools/rel-1_4_15/gscriptor | 894 ------------ pcsc-tools/rel-1_4_15/gscriptor.1p | 45 - pcsc-tools/rel-1_4_15/gscriptor.desktop | 7 - pcsc-tools/rel-1_4_15/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_15/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_15/pcsc_scan.c | 424 ------ pcsc-tools/rel-1_4_15/scriptor | 171 --- pcsc-tools/rel-1_4_15/scriptor.1p | 86 -- pcsc-tools/rel-1_4_15/smartcard_list.txt | 2338 ------------------------------ pcsc-tools/rel-1_4_15/test.script | 25 - pcsc-tools/rel-1_4_2/ATR_analysis | 423 ------ pcsc-tools/rel-1_4_2/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_2/LICENCE | 340 ----- pcsc-tools/rel-1_4_2/MANIFEST | 18 - pcsc-tools/rel-1_4_2/Makefile | 49 - pcsc-tools/rel-1_4_2/README | 222 --- pcsc-tools/rel-1_4_2/TODO | 6 - pcsc-tools/rel-1_4_2/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_2/gscriptor | 853 ----------- pcsc-tools/rel-1_4_2/gscriptor.1p | 45 - pcsc-tools/rel-1_4_2/gscriptor.desktop | 8 - pcsc-tools/rel-1_4_2/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_2/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_2/pcsc_scan.c | 367 ----- pcsc-tools/rel-1_4_2/scriptor | 150 -- pcsc-tools/rel-1_4_2/scriptor.1p | 86 -- pcsc-tools/rel-1_4_2/smartcard_list.txt | 1166 --------------- pcsc-tools/rel-1_4_2/test.script | 25 - pcsc-tools/rel-1_4_3/ATR_analysis | 423 ------ pcsc-tools/rel-1_4_3/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_3/LICENCE | 340 ----- pcsc-tools/rel-1_4_3/MANIFEST | 18 - pcsc-tools/rel-1_4_3/Makefile | 49 - pcsc-tools/rel-1_4_3/README | 228 --- pcsc-tools/rel-1_4_3/TODO | 6 - pcsc-tools/rel-1_4_3/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_3/gscriptor | 853 ----------- pcsc-tools/rel-1_4_3/gscriptor.1p | 45 - pcsc-tools/rel-1_4_3/gscriptor.desktop | 8 - pcsc-tools/rel-1_4_3/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_3/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_3/pcsc_scan.c | 377 ----- pcsc-tools/rel-1_4_3/scriptor | 150 -- pcsc-tools/rel-1_4_3/scriptor.1p | 86 -- pcsc-tools/rel-1_4_3/smartcard_list.txt | 1166 --------------- pcsc-tools/rel-1_4_3/test.script | 25 - pcsc-tools/rel-1_4_5/ATR_analysis | 804 ---------- pcsc-tools/rel-1_4_5/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_5/LICENCE | 340 ----- pcsc-tools/rel-1_4_5/MANIFEST | 18 - pcsc-tools/rel-1_4_5/Makefile | 49 - pcsc-tools/rel-1_4_5/README | 255 ---- pcsc-tools/rel-1_4_5/TODO | 6 - pcsc-tools/rel-1_4_5/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_5/gscriptor | 867 ----------- pcsc-tools/rel-1_4_5/gscriptor.1p | 45 - pcsc-tools/rel-1_4_5/gscriptor.desktop | 8 - pcsc-tools/rel-1_4_5/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_5/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_5/pcsc_scan.c | 377 ----- pcsc-tools/rel-1_4_5/scriptor | 150 -- pcsc-tools/rel-1_4_5/scriptor.1p | 86 -- pcsc-tools/rel-1_4_5/smartcard_list.txt | 1213 ---------------- pcsc-tools/rel-1_4_5/test.script | 25 - pcsc-tools/rel-1_4_6/ATR_analysis | 804 ---------- pcsc-tools/rel-1_4_6/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_6/LICENCE | 340 ----- pcsc-tools/rel-1_4_6/MANIFEST | 18 - pcsc-tools/rel-1_4_6/Makefile | 49 - pcsc-tools/rel-1_4_6/README | 261 ---- pcsc-tools/rel-1_4_6/TODO | 6 - pcsc-tools/rel-1_4_6/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_6/gscriptor | 893 ------------ pcsc-tools/rel-1_4_6/gscriptor.1p | 45 - pcsc-tools/rel-1_4_6/gscriptor.desktop | 8 - pcsc-tools/rel-1_4_6/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_6/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_6/pcsc_scan.c | 377 ----- pcsc-tools/rel-1_4_6/scriptor | 167 --- pcsc-tools/rel-1_4_6/scriptor.1p | 86 -- pcsc-tools/rel-1_4_6/smartcard_list.txt | 1300 ----------------- pcsc-tools/rel-1_4_6/test.script | 25 - pcsc-tools/rel-1_4_7/ATR_analysis | 804 ---------- pcsc-tools/rel-1_4_7/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_7/LICENCE | 340 ----- pcsc-tools/rel-1_4_7/MANIFEST | 18 - pcsc-tools/rel-1_4_7/Makefile | 49 - pcsc-tools/rel-1_4_7/README | 267 ---- pcsc-tools/rel-1_4_7/TODO | 6 - pcsc-tools/rel-1_4_7/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_7/gscriptor | 893 ------------ pcsc-tools/rel-1_4_7/gscriptor.1p | 45 - pcsc-tools/rel-1_4_7/gscriptor.desktop | 8 - pcsc-tools/rel-1_4_7/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_7/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_7/pcsc_scan.c | 383 ----- pcsc-tools/rel-1_4_7/scriptor | 167 --- pcsc-tools/rel-1_4_7/scriptor.1p | 86 -- pcsc-tools/rel-1_4_7/smartcard_list.txt | 1333 ----------------- pcsc-tools/rel-1_4_7/test.script | 25 - pcsc-tools/rel-1_4_9/ATR_analysis | 826 ----------- pcsc-tools/rel-1_4_9/ATR_analysis.1p | 46 - pcsc-tools/rel-1_4_9/LICENCE | 340 ----- pcsc-tools/rel-1_4_9/MANIFEST | 18 - pcsc-tools/rel-1_4_9/Makefile | 49 - pcsc-tools/rel-1_4_9/README | 287 ---- pcsc-tools/rel-1_4_9/TODO | 6 - pcsc-tools/rel-1_4_9/create_distrib.sh | 87 -- pcsc-tools/rel-1_4_9/gscriptor | 893 ------------ pcsc-tools/rel-1_4_9/gscriptor.1p | 45 - pcsc-tools/rel-1_4_9/gscriptor.desktop | 8 - pcsc-tools/rel-1_4_9/gscriptor.gtk1.2 | 734 ---------- pcsc-tools/rel-1_4_9/pcsc_scan.1 | 78 - pcsc-tools/rel-1_4_9/pcsc_scan.c | 384 ----- pcsc-tools/rel-1_4_9/scriptor | 171 --- pcsc-tools/rel-1_4_9/scriptor.1p | 86 -- pcsc-tools/rel-1_4_9/smartcard_list.txt | 1609 -------------------- pcsc-tools/rel-1_4_9/test.script | 25 - pcsc-tools/rel_1-0-0/Makefile | 20 - pcsc-tools/rel_1-0-0/README | 37 - pcsc-tools/rel_1-0-0/TODO | 8 - pcsc-tools/rel_1-0-0/create_distrib.sh | 33 - pcsc-tools/rel_1-0-0/gscriptor | 791 ---------- pcsc-tools/rel_1-0-0/pcsc_scan.c | 182 --- pcsc-tools/rel_1-0-0/scriptor | 113 -- pcsc-tools/rel_1-0-0/test.script | 13 - pcsc-tools/rel_1-0-1/MANIFEST | 10 - pcsc-tools/rel_1-0-1/Makefile | 20 - pcsc-tools/rel_1-0-1/README | 37 - pcsc-tools/rel_1-0-1/TODO | 8 - pcsc-tools/rel_1-0-1/create_distrib.sh | 79 - pcsc-tools/rel_1-0-1/gscriptor | 791 ---------- pcsc-tools/rel_1-0-1/pcsc_scan.c | 182 --- pcsc-tools/rel_1-0-1/scriptor | 113 -- pcsc-tools/rel_1-0-1/test.script | 13 - pcsc-tools/rel_1-0-2/LICENCE | 340 ----- pcsc-tools/rel_1-0-2/MANIFEST | 13 - pcsc-tools/rel_1-0-2/Makefile | 20 - pcsc-tools/rel_1-0-2/README | 39 - pcsc-tools/rel_1-0-2/TODO | 7 - pcsc-tools/rel_1-0-2/create_distrib.sh | 79 - pcsc-tools/rel_1-0-2/gscriptor | 791 ---------- pcsc-tools/rel_1-0-2/gscriptor.1p | 45 - pcsc-tools/rel_1-0-2/pcsc_scan.1 | 64 - pcsc-tools/rel_1-0-2/pcsc_scan.c | 186 --- pcsc-tools/rel_1-0-2/scriptor | 113 -- pcsc-tools/rel_1-0-2/scriptor.1p | 79 - pcsc-tools/rel_1-0-2/test.script | 25 - pcsc-tools/rel_1-0-3/LICENCE | 340 ----- pcsc-tools/rel_1-0-3/MANIFEST | 13 - pcsc-tools/rel_1-0-3/Makefile | 35 - pcsc-tools/rel_1-0-3/README | 50 - pcsc-tools/rel_1-0-3/TODO | 7 - pcsc-tools/rel_1-0-3/create_distrib.sh | 79 - pcsc-tools/rel_1-0-3/gscriptor | 791 ---------- pcsc-tools/rel_1-0-3/gscriptor.1p | 45 - pcsc-tools/rel_1-0-3/pcsc_scan.1 | 64 - pcsc-tools/rel_1-0-3/pcsc_scan.c | 196 --- pcsc-tools/rel_1-0-3/scriptor | 113 -- pcsc-tools/rel_1-0-3/scriptor.1p | 79 - pcsc-tools/rel_1-0-3/test.script | 25 - pcsc-tools/rel_1-0-4/LICENCE | 340 ----- pcsc-tools/rel_1-0-4/MANIFEST | 13 - pcsc-tools/rel_1-0-4/Makefile | 35 - pcsc-tools/rel_1-0-4/README | 106 -- pcsc-tools/rel_1-0-4/TODO | 6 - pcsc-tools/rel_1-0-4/create_distrib.sh | 79 - pcsc-tools/rel_1-0-4/gscriptor | 794 ---------- pcsc-tools/rel_1-0-4/gscriptor.1p | 45 - pcsc-tools/rel_1-0-4/pcsc_scan.1 | 64 - pcsc-tools/rel_1-0-4/pcsc_scan.c | 196 --- pcsc-tools/rel_1-0-4/scriptor | 116 -- pcsc-tools/rel_1-0-4/scriptor.1p | 79 - pcsc-tools/rel_1-0-4/test.script | 25 - pcsc-tools/rel_1-0-7/gscriptor | 787 ---------- pcsc-tools/rel_1-0-7/scriptor | 109 -- pcsc-tools/rel_1-0-7/test.script | 13 - pcsc-tools/rel_1_1_0/ATR_analysis | 334 ----- pcsc-tools/rel_1_1_0/ATR_analysis.1p | 27 - pcsc-tools/rel_1_1_0/LICENCE | 340 ----- pcsc-tools/rel_1_1_0/MANIFEST | 15 - pcsc-tools/rel_1_1_0/Makefile | 36 - pcsc-tools/rel_1_1_0/README | 115 -- pcsc-tools/rel_1_1_0/TODO | 6 - pcsc-tools/rel_1_1_0/create_distrib.sh | 79 - pcsc-tools/rel_1_1_0/gscriptor | 794 ---------- pcsc-tools/rel_1_1_0/gscriptor.1p | 45 - pcsc-tools/rel_1_1_0/pcsc_scan.1 | 78 - pcsc-tools/rel_1_1_0/pcsc_scan.c | 307 ---- pcsc-tools/rel_1_1_0/scriptor | 116 -- pcsc-tools/rel_1_1_0/scriptor.1p | 79 - pcsc-tools/rel_1_1_0/test.script | 25 - pcsc-tools/rel_1_2_0/ATR_analysis | 411 ------ pcsc-tools/rel_1_2_0/ATR_analysis.1p | 27 - pcsc-tools/rel_1_2_0/LICENCE | 340 ----- pcsc-tools/rel_1_2_0/MANIFEST | 16 - pcsc-tools/rel_1_2_0/Makefile | 44 - pcsc-tools/rel_1_2_0/README | 140 -- pcsc-tools/rel_1_2_0/TODO | 6 - pcsc-tools/rel_1_2_0/create_distrib.sh | 79 - pcsc-tools/rel_1_2_0/gscriptor | 794 ---------- pcsc-tools/rel_1_2_0/gscriptor.1p | 45 - pcsc-tools/rel_1_2_0/pcsc_scan.1 | 78 - pcsc-tools/rel_1_2_0/pcsc_scan.c | 307 ---- pcsc-tools/rel_1_2_0/scriptor | 116 -- pcsc-tools/rel_1_2_0/scriptor.1p | 79 - pcsc-tools/rel_1_2_0/smartcard_list.txt | 296 ---- pcsc-tools/rel_1_2_0/test.script | 25 - pcsc-tools/start/Makefile | 19 - pcsc-tools/start/pcsc_scan.c | 179 --- 468 files changed, 112813 deletions(-) commit 8fee9723ff97d8ffde907ec00071e9992db3133e Author: Ludovic Rousseau Date: Sun May 10 15:40:06 2009 +0000 cleanup git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4189 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc-tools/rel-1_2_1/ATR_analysis | 411 ++++++ pcsc-tools/rel-1_2_1/ATR_analysis.1p | 47 + pcsc-tools/rel-1_2_1/LICENCE | 340 +++++ pcsc-tools/rel-1_2_1/MANIFEST | 16 + pcsc-tools/rel-1_2_1/Makefile | 44 + pcsc-tools/rel-1_2_1/README | 144 ++ pcsc-tools/rel-1_2_1/TODO | 6 + pcsc-tools/rel-1_2_1/create_distrib.sh | 79 + pcsc-tools/rel-1_2_1/gscriptor | 794 ++++++++++ pcsc-tools/rel-1_2_1/gscriptor.1p | 45 + pcsc-tools/rel-1_2_1/pcsc_scan.1 | 78 + pcsc-tools/rel-1_2_1/pcsc_scan.c | 307 ++++ pcsc-tools/rel-1_2_1/scriptor | 116 ++ pcsc-tools/rel-1_2_1/scriptor.1p | 79 + pcsc-tools/rel-1_2_1/smartcard_list.txt | 345 +++++ pcsc-tools/rel-1_2_1/test.script | 25 + pcsc-tools/rel-1_2_2/ATR_analysis | 412 ++++++ pcsc-tools/rel-1_2_2/ATR_analysis.1p | 47 + pcsc-tools/rel-1_2_2/LICENCE | 340 +++++ pcsc-tools/rel-1_2_2/MANIFEST | 16 + pcsc-tools/rel-1_2_2/Makefile | 45 + pcsc-tools/rel-1_2_2/README | 151 ++ pcsc-tools/rel-1_2_2/TODO | 6 + pcsc-tools/rel-1_2_2/create_distrib.sh | 87 ++ pcsc-tools/rel-1_2_2/gscriptor | 794 ++++++++++ pcsc-tools/rel-1_2_2/gscriptor.1p | 45 + pcsc-tools/rel-1_2_2/pcsc_scan.1 | 78 + pcsc-tools/rel-1_2_2/pcsc_scan.c | 311 ++++ pcsc-tools/rel-1_2_2/scriptor | 116 ++ pcsc-tools/rel-1_2_2/scriptor.1p | 79 + pcsc-tools/rel-1_2_2/smartcard_list.txt | 359 +++++ pcsc-tools/rel-1_2_2/test.script | 25 + pcsc-tools/rel-1_2_3/ATR_analysis | 415 ++++++ pcsc-tools/rel-1_2_3/ATR_analysis.1p | 47 + pcsc-tools/rel-1_2_3/LICENCE | 340 +++++ pcsc-tools/rel-1_2_3/MANIFEST | 16 + pcsc-tools/rel-1_2_3/Makefile | 45 + pcsc-tools/rel-1_2_3/README | 156 ++ pcsc-tools/rel-1_2_3/TODO | 6 + pcsc-tools/rel-1_2_3/create_distrib.sh | 87 ++ pcsc-tools/rel-1_2_3/gscriptor | 794 ++++++++++ pcsc-tools/rel-1_2_3/gscriptor.1p | 45 + pcsc-tools/rel-1_2_3/pcsc_scan.1 | 78 + pcsc-tools/rel-1_2_3/pcsc_scan.c | 311 ++++ pcsc-tools/rel-1_2_3/scriptor | 116 ++ pcsc-tools/rel-1_2_3/scriptor.1p | 79 + pcsc-tools/rel-1_2_3/smartcard_list.txt | 448 ++++++ pcsc-tools/rel-1_2_3/test.script | 25 + pcsc-tools/rel-1_2_4/ATR_analysis | 415 ++++++ pcsc-tools/rel-1_2_4/ATR_analysis.1p | 47 + pcsc-tools/rel-1_2_4/LICENCE | 340 +++++ pcsc-tools/rel-1_2_4/MANIFEST | 16 + pcsc-tools/rel-1_2_4/Makefile | 46 + pcsc-tools/rel-1_2_4/README | 160 ++ pcsc-tools/rel-1_2_4/TODO | 6 + pcsc-tools/rel-1_2_4/create_distrib.sh | 87 ++ pcsc-tools/rel-1_2_4/gscriptor | 794 ++++++++++ pcsc-tools/rel-1_2_4/gscriptor.1p | 45 + pcsc-tools/rel-1_2_4/pcsc_scan.1 | 78 + pcsc-tools/rel-1_2_4/pcsc_scan.c | 311 ++++ pcsc-tools/rel-1_2_4/scriptor | 116 ++ pcsc-tools/rel-1_2_4/scriptor.1p | 79 + pcsc-tools/rel-1_2_4/smartcard_list.txt | 496 +++++++ pcsc-tools/rel-1_2_4/test.script | 25 + pcsc-tools/rel-1_2_5/ATR_analysis | 415 ++++++ pcsc-tools/rel-1_2_5/ATR_analysis.1p | 47 + pcsc-tools/rel-1_2_5/LICENCE | 340 +++++ pcsc-tools/rel-1_2_5/MANIFEST | 16 + pcsc-tools/rel-1_2_5/Makefile | 46 + pcsc-tools/rel-1_2_5/README | 165 +++ pcsc-tools/rel-1_2_5/TODO | 6 + pcsc-tools/rel-1_2_5/create_distrib.sh | 87 ++ pcsc-tools/rel-1_2_5/gscriptor | 731 ++++++++++ pcsc-tools/rel-1_2_5/gscriptor.1p | 45 + pcsc-tools/rel-1_2_5/pcsc_scan.1 | 78 + pcsc-tools/rel-1_2_5/pcsc_scan.c | 280 ++++ pcsc-tools/rel-1_2_5/scriptor | 108 ++ pcsc-tools/rel-1_2_5/scriptor.1p | 79 + pcsc-tools/rel-1_2_5/smartcard_list.txt | 587 ++++++++ pcsc-tools/rel-1_2_5/test.script | 25 + pcsc-tools/rel-1_3_0/ATR_analysis | 415 ++++++ pcsc-tools/rel-1_3_0/ATR_analysis.1p | 47 + pcsc-tools/rel-1_3_0/LICENCE | 340 +++++ pcsc-tools/rel-1_3_0/MANIFEST | 16 + pcsc-tools/rel-1_3_0/Makefile | 46 + pcsc-tools/rel-1_3_0/README | 170 +++ pcsc-tools/rel-1_3_0/TODO | 6 + pcsc-tools/rel-1_3_0/create_distrib.sh | 87 ++ pcsc-tools/rel-1_3_0/gscriptor | 731 ++++++++++ pcsc-tools/rel-1_3_0/gscriptor.1p | 45 + pcsc-tools/rel-1_3_0/pcsc_scan.1 | 78 + pcsc-tools/rel-1_3_0/pcsc_scan.c | 294 ++++ pcsc-tools/rel-1_3_0/scriptor | 108 ++ pcsc-tools/rel-1_3_0/scriptor.1p | 79 + pcsc-tools/rel-1_3_0/smartcard_list.txt | 599 ++++++++ pcsc-tools/rel-1_3_0/test.script | 25 + pcsc-tools/rel-1_3_1/ATR_analysis | 424 ++++++ pcsc-tools/rel-1_3_1/ATR_analysis.1p | 47 + pcsc-tools/rel-1_3_1/LICENCE | 340 +++++ pcsc-tools/rel-1_3_1/MANIFEST | 16 + pcsc-tools/rel-1_3_1/Makefile | 46 + pcsc-tools/rel-1_3_1/README | 178 +++ pcsc-tools/rel-1_3_1/TODO | 6 + pcsc-tools/rel-1_3_1/create_distrib.sh | 87 ++ pcsc-tools/rel-1_3_1/gscriptor | 731 ++++++++++ pcsc-tools/rel-1_3_1/gscriptor.1p | 45 + pcsc-tools/rel-1_3_1/pcsc_scan.1 | 78 + pcsc-tools/rel-1_3_1/pcsc_scan.c | 294 ++++ pcsc-tools/rel-1_3_1/scriptor | 130 ++ pcsc-tools/rel-1_3_1/scriptor.1p | 86 ++ pcsc-tools/rel-1_3_1/smartcard_list.txt | 674 +++++++++ pcsc-tools/rel-1_3_1/test.script | 25 + pcsc-tools/rel-1_3_2/ATR_analysis | 424 ++++++ pcsc-tools/rel-1_3_2/ATR_analysis.1p | 47 + pcsc-tools/rel-1_3_2/LICENCE | 340 +++++ pcsc-tools/rel-1_3_2/MANIFEST | 16 + pcsc-tools/rel-1_3_2/Makefile | 46 + pcsc-tools/rel-1_3_2/README | 188 +++ pcsc-tools/rel-1_3_2/TODO | 6 + pcsc-tools/rel-1_3_2/create_distrib.sh | 87 ++ pcsc-tools/rel-1_3_2/gscriptor | 731 ++++++++++ pcsc-tools/rel-1_3_2/gscriptor.1p | 45 + pcsc-tools/rel-1_3_2/pcsc_scan.1 | 78 + pcsc-tools/rel-1_3_2/pcsc_scan.c | 294 ++++ pcsc-tools/rel-1_3_2/scriptor | 145 ++ pcsc-tools/rel-1_3_2/scriptor.1p | 86 ++ pcsc-tools/rel-1_3_2/smartcard_list.txt | 722 +++++++++ pcsc-tools/rel-1_3_2/test.script | 25 + pcsc-tools/rel-1_3_4/ATR_analysis | 424 ++++++ pcsc-tools/rel-1_3_4/ATR_analysis.1p | 47 + pcsc-tools/rel-1_3_4/LICENCE | 340 +++++ pcsc-tools/rel-1_3_4/MANIFEST | 16 + pcsc-tools/rel-1_3_4/Makefile | 49 + pcsc-tools/rel-1_3_4/README | 202 +++ pcsc-tools/rel-1_3_4/TODO | 6 + pcsc-tools/rel-1_3_4/create_distrib.sh | 87 ++ pcsc-tools/rel-1_3_4/gscriptor | 731 ++++++++++ pcsc-tools/rel-1_3_4/gscriptor.1p | 45 + pcsc-tools/rel-1_3_4/pcsc_scan.1 | 78 + pcsc-tools/rel-1_3_4/pcsc_scan.c | 335 +++++ pcsc-tools/rel-1_3_4/scriptor | 145 ++ pcsc-tools/rel-1_3_4/scriptor.1p | 86 ++ pcsc-tools/rel-1_3_4/smartcard_list.txt | 783 ++++++++++ pcsc-tools/rel-1_3_4/test.script | 25 + pcsc-tools/rel-1_4_0/ATR_analysis | 424 ++++++ pcsc-tools/rel-1_4_0/ATR_analysis.1p | 47 + pcsc-tools/rel-1_4_0/LICENCE | 340 +++++ pcsc-tools/rel-1_4_0/MANIFEST | 17 + pcsc-tools/rel-1_4_0/Makefile | 49 + pcsc-tools/rel-1_4_0/README | 207 +++ pcsc-tools/rel-1_4_0/TODO | 6 + pcsc-tools/rel-1_4_0/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_0/gscriptor | 847 +++++++++++ pcsc-tools/rel-1_4_0/gscriptor.1p | 45 + pcsc-tools/rel-1_4_0/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_0/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_0/pcsc_scan.c | 335 +++++ pcsc-tools/rel-1_4_0/scriptor | 150 ++ pcsc-tools/rel-1_4_0/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_0/smartcard_list.txt | 822 +++++++++++ pcsc-tools/rel-1_4_0/test.script | 25 + pcsc-tools/rel-1_4_1/ATR_analysis | 423 ++++++ pcsc-tools/rel-1_4_1/ATR_analysis.1p | 47 + pcsc-tools/rel-1_4_1/LICENCE | 340 +++++ pcsc-tools/rel-1_4_1/MANIFEST | 17 + pcsc-tools/rel-1_4_1/Makefile | 49 + pcsc-tools/rel-1_4_1/README | 216 +++ pcsc-tools/rel-1_4_1/TODO | 6 + pcsc-tools/rel-1_4_1/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_1/gscriptor | 853 +++++++++++ pcsc-tools/rel-1_4_1/gscriptor.1p | 45 + pcsc-tools/rel-1_4_1/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_1/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_1/pcsc_scan.c | 335 +++++ pcsc-tools/rel-1_4_1/scriptor | 150 ++ pcsc-tools/rel-1_4_1/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_1/smartcard_list.txt | 969 +++++++++++++ pcsc-tools/rel-1_4_1/test.script | 25 + pcsc-tools/rel-1_4_11/ATR_analysis | 829 +++++++++++ pcsc-tools/rel-1_4_11/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_11/LICENCE | 340 +++++ pcsc-tools/rel-1_4_11/MANIFEST | 18 + pcsc-tools/rel-1_4_11/Makefile | 49 + pcsc-tools/rel-1_4_11/README | 298 ++++ pcsc-tools/rel-1_4_11/TODO | 6 + pcsc-tools/rel-1_4_11/create_distrib.sh | 90 ++ pcsc-tools/rel-1_4_11/gscriptor | 894 ++++++++++++ pcsc-tools/rel-1_4_11/gscriptor.1p | 45 + pcsc-tools/rel-1_4_11/gscriptor.desktop | 7 + pcsc-tools/rel-1_4_11/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_11/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_11/pcsc_scan.c | 384 +++++ pcsc-tools/rel-1_4_11/scriptor | 171 +++ pcsc-tools/rel-1_4_11/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_11/smartcard_list.txt | 1871 ++++++++++++++++++++++++ pcsc-tools/rel-1_4_11/test.script | 25 + pcsc-tools/rel-1_4_12/ATR_analysis | 829 +++++++++++ pcsc-tools/rel-1_4_12/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_12/LICENCE | 340 +++++ pcsc-tools/rel-1_4_12/MANIFEST | 18 + pcsc-tools/rel-1_4_12/Makefile | 49 + pcsc-tools/rel-1_4_12/README | 302 ++++ pcsc-tools/rel-1_4_12/TODO | 6 + pcsc-tools/rel-1_4_12/create_distrib.sh | 90 ++ pcsc-tools/rel-1_4_12/gscriptor | 894 ++++++++++++ pcsc-tools/rel-1_4_12/gscriptor.1p | 45 + pcsc-tools/rel-1_4_12/gscriptor.desktop | 7 + pcsc-tools/rel-1_4_12/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_12/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_12/pcsc_scan.c | 389 +++++ pcsc-tools/rel-1_4_12/scriptor | 171 +++ pcsc-tools/rel-1_4_12/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_12/smartcard_list.txt | 1924 ++++++++++++++++++++++++ pcsc-tools/rel-1_4_12/test.script | 25 + pcsc-tools/rel-1_4_13/ATR_analysis | 829 +++++++++++ pcsc-tools/rel-1_4_13/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_13/LICENCE | 340 +++++ pcsc-tools/rel-1_4_13/MANIFEST | 18 + pcsc-tools/rel-1_4_13/Makefile | 49 + pcsc-tools/rel-1_4_13/README | 306 ++++ pcsc-tools/rel-1_4_13/TODO | 6 + pcsc-tools/rel-1_4_13/create_distrib.sh | 90 ++ pcsc-tools/rel-1_4_13/gscriptor | 894 ++++++++++++ pcsc-tools/rel-1_4_13/gscriptor.1p | 45 + pcsc-tools/rel-1_4_13/gscriptor.desktop | 7 + pcsc-tools/rel-1_4_13/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_13/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_13/pcsc_scan.c | 390 +++++ pcsc-tools/rel-1_4_13/scriptor | 171 +++ pcsc-tools/rel-1_4_13/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_13/smartcard_list.txt | 2027 ++++++++++++++++++++++++++ pcsc-tools/rel-1_4_13/test.script | 25 + pcsc-tools/rel-1_4_14/ATR_analysis | 830 +++++++++++ pcsc-tools/rel-1_4_14/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_14/LICENCE | 340 +++++ pcsc-tools/rel-1_4_14/MANIFEST | 18 + pcsc-tools/rel-1_4_14/Makefile | 49 + pcsc-tools/rel-1_4_14/README | 314 ++++ pcsc-tools/rel-1_4_14/TODO | 6 + pcsc-tools/rel-1_4_14/create_distrib.sh | 90 ++ pcsc-tools/rel-1_4_14/gscriptor | 894 ++++++++++++ pcsc-tools/rel-1_4_14/gscriptor.1p | 45 + pcsc-tools/rel-1_4_14/gscriptor.desktop | 7 + pcsc-tools/rel-1_4_14/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_14/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_14/pcsc_scan.c | 390 +++++ pcsc-tools/rel-1_4_14/scriptor | 171 +++ pcsc-tools/rel-1_4_14/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_14/smartcard_list.txt | 2097 +++++++++++++++++++++++++++ pcsc-tools/rel-1_4_14/test.script | 25 + pcsc-tools/rel-1_4_15/ATR_analysis | 844 +++++++++++ pcsc-tools/rel-1_4_15/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_15/LICENCE | 340 +++++ pcsc-tools/rel-1_4_15/MANIFEST | 18 + pcsc-tools/rel-1_4_15/Makefile | 49 + pcsc-tools/rel-1_4_15/README | 324 +++++ pcsc-tools/rel-1_4_15/TODO | 6 + pcsc-tools/rel-1_4_15/create_distrib.sh | 90 ++ pcsc-tools/rel-1_4_15/gscriptor | 894 ++++++++++++ pcsc-tools/rel-1_4_15/gscriptor.1p | 45 + pcsc-tools/rel-1_4_15/gscriptor.desktop | 7 + pcsc-tools/rel-1_4_15/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_15/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_15/pcsc_scan.c | 424 ++++++ pcsc-tools/rel-1_4_15/scriptor | 171 +++ pcsc-tools/rel-1_4_15/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_15/smartcard_list.txt | 2338 ++++++++++++++++++++++++++++++ pcsc-tools/rel-1_4_15/test.script | 25 + pcsc-tools/rel-1_4_2/ATR_analysis | 423 ++++++ pcsc-tools/rel-1_4_2/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_2/LICENCE | 340 +++++ pcsc-tools/rel-1_4_2/MANIFEST | 18 + pcsc-tools/rel-1_4_2/Makefile | 49 + pcsc-tools/rel-1_4_2/README | 222 +++ pcsc-tools/rel-1_4_2/TODO | 6 + pcsc-tools/rel-1_4_2/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_2/gscriptor | 853 +++++++++++ pcsc-tools/rel-1_4_2/gscriptor.1p | 45 + pcsc-tools/rel-1_4_2/gscriptor.desktop | 8 + pcsc-tools/rel-1_4_2/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_2/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_2/pcsc_scan.c | 367 +++++ pcsc-tools/rel-1_4_2/scriptor | 150 ++ pcsc-tools/rel-1_4_2/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_2/smartcard_list.txt | 1166 +++++++++++++++ pcsc-tools/rel-1_4_2/test.script | 25 + pcsc-tools/rel-1_4_3/ATR_analysis | 423 ++++++ pcsc-tools/rel-1_4_3/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_3/LICENCE | 340 +++++ pcsc-tools/rel-1_4_3/MANIFEST | 18 + pcsc-tools/rel-1_4_3/Makefile | 49 + pcsc-tools/rel-1_4_3/README | 228 +++ pcsc-tools/rel-1_4_3/TODO | 6 + pcsc-tools/rel-1_4_3/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_3/gscriptor | 853 +++++++++++ pcsc-tools/rel-1_4_3/gscriptor.1p | 45 + pcsc-tools/rel-1_4_3/gscriptor.desktop | 8 + pcsc-tools/rel-1_4_3/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_3/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_3/pcsc_scan.c | 377 +++++ pcsc-tools/rel-1_4_3/scriptor | 150 ++ pcsc-tools/rel-1_4_3/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_3/smartcard_list.txt | 1166 +++++++++++++++ pcsc-tools/rel-1_4_3/test.script | 25 + pcsc-tools/rel-1_4_5/ATR_analysis | 804 ++++++++++ pcsc-tools/rel-1_4_5/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_5/LICENCE | 340 +++++ pcsc-tools/rel-1_4_5/MANIFEST | 18 + pcsc-tools/rel-1_4_5/Makefile | 49 + pcsc-tools/rel-1_4_5/README | 255 ++++ pcsc-tools/rel-1_4_5/TODO | 6 + pcsc-tools/rel-1_4_5/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_5/gscriptor | 867 +++++++++++ pcsc-tools/rel-1_4_5/gscriptor.1p | 45 + pcsc-tools/rel-1_4_5/gscriptor.desktop | 8 + pcsc-tools/rel-1_4_5/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_5/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_5/pcsc_scan.c | 377 +++++ pcsc-tools/rel-1_4_5/scriptor | 150 ++ pcsc-tools/rel-1_4_5/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_5/smartcard_list.txt | 1213 ++++++++++++++++ pcsc-tools/rel-1_4_5/test.script | 25 + pcsc-tools/rel-1_4_6/ATR_analysis | 804 ++++++++++ pcsc-tools/rel-1_4_6/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_6/LICENCE | 340 +++++ pcsc-tools/rel-1_4_6/MANIFEST | 18 + pcsc-tools/rel-1_4_6/Makefile | 49 + pcsc-tools/rel-1_4_6/README | 261 ++++ pcsc-tools/rel-1_4_6/TODO | 6 + pcsc-tools/rel-1_4_6/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_6/gscriptor | 893 ++++++++++++ pcsc-tools/rel-1_4_6/gscriptor.1p | 45 + pcsc-tools/rel-1_4_6/gscriptor.desktop | 8 + pcsc-tools/rel-1_4_6/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_6/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_6/pcsc_scan.c | 377 +++++ pcsc-tools/rel-1_4_6/scriptor | 167 +++ pcsc-tools/rel-1_4_6/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_6/smartcard_list.txt | 1300 +++++++++++++++++ pcsc-tools/rel-1_4_6/test.script | 25 + pcsc-tools/rel-1_4_7/ATR_analysis | 804 ++++++++++ pcsc-tools/rel-1_4_7/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_7/LICENCE | 340 +++++ pcsc-tools/rel-1_4_7/MANIFEST | 18 + pcsc-tools/rel-1_4_7/Makefile | 49 + pcsc-tools/rel-1_4_7/README | 267 ++++ pcsc-tools/rel-1_4_7/TODO | 6 + pcsc-tools/rel-1_4_7/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_7/gscriptor | 893 ++++++++++++ pcsc-tools/rel-1_4_7/gscriptor.1p | 45 + pcsc-tools/rel-1_4_7/gscriptor.desktop | 8 + pcsc-tools/rel-1_4_7/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_7/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_7/pcsc_scan.c | 383 +++++ pcsc-tools/rel-1_4_7/scriptor | 167 +++ pcsc-tools/rel-1_4_7/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_7/smartcard_list.txt | 1333 +++++++++++++++++ pcsc-tools/rel-1_4_7/test.script | 25 + pcsc-tools/rel-1_4_9/ATR_analysis | 826 +++++++++++ pcsc-tools/rel-1_4_9/ATR_analysis.1p | 46 + pcsc-tools/rel-1_4_9/LICENCE | 340 +++++ pcsc-tools/rel-1_4_9/MANIFEST | 18 + pcsc-tools/rel-1_4_9/Makefile | 49 + pcsc-tools/rel-1_4_9/README | 287 ++++ pcsc-tools/rel-1_4_9/TODO | 6 + pcsc-tools/rel-1_4_9/create_distrib.sh | 87 ++ pcsc-tools/rel-1_4_9/gscriptor | 893 ++++++++++++ pcsc-tools/rel-1_4_9/gscriptor.1p | 45 + pcsc-tools/rel-1_4_9/gscriptor.desktop | 8 + pcsc-tools/rel-1_4_9/gscriptor.gtk1.2 | 734 ++++++++++ pcsc-tools/rel-1_4_9/pcsc_scan.1 | 78 + pcsc-tools/rel-1_4_9/pcsc_scan.c | 384 +++++ pcsc-tools/rel-1_4_9/scriptor | 171 +++ pcsc-tools/rel-1_4_9/scriptor.1p | 86 ++ pcsc-tools/rel-1_4_9/smartcard_list.txt | 1609 ++++++++++++++++++++ pcsc-tools/rel-1_4_9/test.script | 25 + pcsc-tools/rel_1-0-0/Makefile | 20 + pcsc-tools/rel_1-0-0/README | 37 + pcsc-tools/rel_1-0-0/TODO | 8 + pcsc-tools/rel_1-0-0/create_distrib.sh | 33 + pcsc-tools/rel_1-0-0/gscriptor | 791 ++++++++++ pcsc-tools/rel_1-0-0/pcsc_scan.c | 182 +++ pcsc-tools/rel_1-0-0/scriptor | 113 ++ pcsc-tools/rel_1-0-0/test.script | 13 + pcsc-tools/rel_1-0-1/MANIFEST | 10 + pcsc-tools/rel_1-0-1/Makefile | 20 + pcsc-tools/rel_1-0-1/README | 37 + pcsc-tools/rel_1-0-1/TODO | 8 + pcsc-tools/rel_1-0-1/create_distrib.sh | 79 + pcsc-tools/rel_1-0-1/gscriptor | 791 ++++++++++ pcsc-tools/rel_1-0-1/pcsc_scan.c | 182 +++ pcsc-tools/rel_1-0-1/scriptor | 113 ++ pcsc-tools/rel_1-0-1/test.script | 13 + pcsc-tools/rel_1-0-2/LICENCE | 340 +++++ pcsc-tools/rel_1-0-2/MANIFEST | 13 + pcsc-tools/rel_1-0-2/Makefile | 20 + pcsc-tools/rel_1-0-2/README | 39 + pcsc-tools/rel_1-0-2/TODO | 7 + pcsc-tools/rel_1-0-2/create_distrib.sh | 79 + pcsc-tools/rel_1-0-2/gscriptor | 791 ++++++++++ pcsc-tools/rel_1-0-2/gscriptor.1p | 45 + pcsc-tools/rel_1-0-2/pcsc_scan.1 | 64 + pcsc-tools/rel_1-0-2/pcsc_scan.c | 186 +++ pcsc-tools/rel_1-0-2/scriptor | 113 ++ pcsc-tools/rel_1-0-2/scriptor.1p | 79 + pcsc-tools/rel_1-0-2/test.script | 25 + pcsc-tools/rel_1-0-3/LICENCE | 340 +++++ pcsc-tools/rel_1-0-3/MANIFEST | 13 + pcsc-tools/rel_1-0-3/Makefile | 35 + pcsc-tools/rel_1-0-3/README | 50 + pcsc-tools/rel_1-0-3/TODO | 7 + pcsc-tools/rel_1-0-3/create_distrib.sh | 79 + pcsc-tools/rel_1-0-3/gscriptor | 791 ++++++++++ pcsc-tools/rel_1-0-3/gscriptor.1p | 45 + pcsc-tools/rel_1-0-3/pcsc_scan.1 | 64 + pcsc-tools/rel_1-0-3/pcsc_scan.c | 196 +++ pcsc-tools/rel_1-0-3/scriptor | 113 ++ pcsc-tools/rel_1-0-3/scriptor.1p | 79 + pcsc-tools/rel_1-0-3/test.script | 25 + pcsc-tools/rel_1-0-4/LICENCE | 340 +++++ pcsc-tools/rel_1-0-4/MANIFEST | 13 + pcsc-tools/rel_1-0-4/Makefile | 35 + pcsc-tools/rel_1-0-4/README | 106 ++ pcsc-tools/rel_1-0-4/TODO | 6 + pcsc-tools/rel_1-0-4/create_distrib.sh | 79 + pcsc-tools/rel_1-0-4/gscriptor | 794 ++++++++++ pcsc-tools/rel_1-0-4/gscriptor.1p | 45 + pcsc-tools/rel_1-0-4/pcsc_scan.1 | 64 + pcsc-tools/rel_1-0-4/pcsc_scan.c | 196 +++ pcsc-tools/rel_1-0-4/scriptor | 116 ++ pcsc-tools/rel_1-0-4/scriptor.1p | 79 + pcsc-tools/rel_1-0-4/test.script | 25 + pcsc-tools/rel_1-0-7/gscriptor | 787 ++++++++++ pcsc-tools/rel_1-0-7/scriptor | 109 ++ pcsc-tools/rel_1-0-7/test.script | 13 + pcsc-tools/rel_1_1_0/ATR_analysis | 334 +++++ pcsc-tools/rel_1_1_0/ATR_analysis.1p | 27 + pcsc-tools/rel_1_1_0/LICENCE | 340 +++++ pcsc-tools/rel_1_1_0/MANIFEST | 15 + pcsc-tools/rel_1_1_0/Makefile | 36 + pcsc-tools/rel_1_1_0/README | 115 ++ pcsc-tools/rel_1_1_0/TODO | 6 + pcsc-tools/rel_1_1_0/create_distrib.sh | 79 + pcsc-tools/rel_1_1_0/gscriptor | 794 ++++++++++ pcsc-tools/rel_1_1_0/gscriptor.1p | 45 + pcsc-tools/rel_1_1_0/pcsc_scan.1 | 78 + pcsc-tools/rel_1_1_0/pcsc_scan.c | 307 ++++ pcsc-tools/rel_1_1_0/scriptor | 116 ++ pcsc-tools/rel_1_1_0/scriptor.1p | 79 + pcsc-tools/rel_1_1_0/test.script | 25 + pcsc-tools/rel_1_2_0/ATR_analysis | 411 ++++++ pcsc-tools/rel_1_2_0/ATR_analysis.1p | 27 + pcsc-tools/rel_1_2_0/LICENCE | 340 +++++ pcsc-tools/rel_1_2_0/MANIFEST | 16 + pcsc-tools/rel_1_2_0/Makefile | 44 + pcsc-tools/rel_1_2_0/README | 140 ++ pcsc-tools/rel_1_2_0/TODO | 6 + pcsc-tools/rel_1_2_0/create_distrib.sh | 79 + pcsc-tools/rel_1_2_0/gscriptor | 794 ++++++++++ pcsc-tools/rel_1_2_0/gscriptor.1p | 45 + pcsc-tools/rel_1_2_0/pcsc_scan.1 | 78 + pcsc-tools/rel_1_2_0/pcsc_scan.c | 307 ++++ pcsc-tools/rel_1_2_0/scriptor | 116 ++ pcsc-tools/rel_1_2_0/scriptor.1p | 79 + pcsc-tools/rel_1_2_0/smartcard_list.txt | 296 ++++ pcsc-tools/rel_1_2_0/test.script | 25 + pcsc-tools/start/Makefile | 19 + pcsc-tools/start/pcsc_scan.c | 179 +++ 468 files changed, 112813 insertions(+) commit 1fb2d01588c78528ede732e0f6b1b3aef9664e5a Author: Ludovic Rousseau Date: Sun May 10 14:57:47 2009 +0000 svn propset svn:keywords Id git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4188 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 2 +- trunk/Makefile | 2 +- trunk/README | 2 +- trunk/create_distrib.sh | 2 +- trunk/gscriptor | 2 +- trunk/gscriptor.gtk1.2 | 2 +- trunk/pcsc_scan.c | 2 +- trunk/scriptor | 2 +- trunk/smartcard_list.txt | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) commit d46c90949fcd372b9cea8e5ebacffbde468bc54f Author: Ludovic Rousseau Date: Wed May 6 12:48:55 2009 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4187 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) commit ba83884fab58068d6bb7d72bd56b6c85278fec20 Author: Ludovic Rousseau Date: Wed Apr 29 12:59:55 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4186 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 69528ee9403c03f63cedb032c1088c557011efd5 Author: Ludovic Rousseau Date: Thu Apr 23 06:51:13 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4185 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 07b492f0bbe733fd61796f5507fa67a62edfe9e0 Author: Ludovic Rousseau Date: Sun Apr 19 13:55:08 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4184 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 3092263c88681b25a4199a28182868899c229d28 Author: Ludovic Rousseau Date: Fri Apr 17 15:25:30 2009 +0000 update card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4183 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 442482f63b6503cfa0dadeb6f8a2182a8b97a28e Author: Ludovic Rousseau Date: Fri Apr 17 09:01:43 2009 +0000 reorder git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4182 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 316 +++++++++++++++++++++++------------------------ 1 file changed, 156 insertions(+), 160 deletions(-) commit b8a17101dc2e821b526f23c19a07d88173aa82fd Author: Ludovic Rousseau Date: Fri Apr 17 07:58:18 2009 +0000 reorder git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4181 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) commit 4ccc10a640f8cac9fb469f6e627128222d295455 Author: Ludovic Rousseau Date: Fri Apr 17 07:57:31 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4180 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 165ab8fad08f02c3e723e32ffc8343d75fd2ca56 Author: Ludovic Rousseau Date: Sat Apr 11 16:30:12 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4179 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e614c1138dcd69890ca633ad37fa67acfa6e2d52 Author: Ludovic Rousseau Date: Wed Apr 8 07:08:38 2009 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4178 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 979aa9b77906ec4f42f89525bf9b90897c1d89df Author: Ludovic Rousseau Date: Sat Apr 4 15:59:56 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4177 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e9f9e11e16642f00016e1941e284d924ebf73437 Author: Ludovic Rousseau Date: Sat Apr 4 11:23:51 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4176 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 1a9d6df7bedd72f6b059dc7e74542422e7abe4b6 Author: Ludovic Rousseau Date: Thu Apr 2 15:54:32 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4175 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2ac4f0dc91e823bd8b2d1923947c820b7e1120b1 Author: Ludovic Rousseau Date: Tue Mar 31 20:31:26 2009 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4174 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) commit 769c98003ab1cd2e1d5b475f591d19e12169f818 Author: Ludovic Rousseau Date: Wed Mar 25 20:04:25 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4173 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit af266a40c739d7bee8b33cdebf4df06c61233124 Author: Ludovic Rousseau Date: Fri Mar 20 14:04:23 2009 +0000 use immediate evaluation ":=" instead of deferred evaluation "=" git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4172 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) commit 57b8fc097468bd239d69602a81a4b436b9a7fbe1 Author: Ludovic Rousseau Date: Sat Mar 14 12:26:36 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4171 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e7c6fc261d9d59e07207be122e63f8407c6d976b Author: Ludovic Rousseau Date: Wed Mar 11 12:58:15 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4170 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ad741a9f975365392fbabd49dba0b16ef96ffdea Author: Ludovic Rousseau Date: Tue Mar 10 19:41:07 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4169 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) commit c3d13dd25f2b55c76535f1f17d75201ca950d04f Author: Ludovic Rousseau Date: Sat Mar 7 10:48:15 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4168 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit b05df7b9157eab7671d31eae35ff653380143863 Author: Ludovic Rousseau Date: Sat Feb 28 15:28:45 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4167 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e1ac5f66fa72f4a62b4845c41c637fe55d40c8d2 Author: Ludovic Rousseau Date: Wed Feb 18 13:10:30 2009 +0000 merge 2 ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4166 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) commit 7e10c8b5c7fc7414ebeb8a9abbc511db7a7baf56 Author: Ludovic Rousseau Date: Tue Feb 17 19:36:46 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4165 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 06d8919d9cb1ef7e12c079072d87292a65cb7280 Author: Ludovic Rousseau Date: Wed Feb 11 19:05:32 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4164 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit 4ce104646c09e46a96790701f92fb13ea516c15e Author: Ludovic Rousseau Date: Wed Feb 11 15:56:25 2009 +0000 update copyright to 2009 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4163 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 2d3815a7265e4889cdf270c41af7f6d89e7775ea Author: Ludovic Rousseau Date: Wed Feb 11 15:55:15 2009 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4162 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) commit 4a4528f2d2e4e7753d128553391f7fd3728e697e Author: Ludovic Rousseau Date: Fri Feb 6 16:36:30 2009 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4161 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 4 ++-- trunk/smartcard_list.txt | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) commit 24ab5dfc48d219c34fffad6c2385753095ecfef6 Author: Ludovic Rousseau Date: Tue Feb 3 17:19:17 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4160 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d21686e9209c9eb25bc8a1d5a7287fcdee0d0e81 Author: Ludovic Rousseau Date: Fri Jan 30 19:49:55 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4159 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit db6ebbd62dff4ccd4fa1432e02804189b43413bf Author: Ludovic Rousseau Date: Thu Jan 29 06:38:21 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4158 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5ffda4eb42e9e2a471a04d33cefe413e621c5812 Author: Ludovic Rousseau Date: Tue Jan 27 21:31:23 2009 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4157 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 56f34a9126b3faa93a35847e009727aaa8f22fd9 Author: Ludovic Rousseau Date: Sun Jan 25 19:53:36 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4156 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 123deba0ef0c222f1bebbd8f062e277bfd1b0a7c Author: Ludovic Rousseau Date: Sat Jan 24 13:49:29 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4155 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 61a6a056c162a137d199e522c8ed8ea8a65dca67 Author: Ludovic Rousseau Date: Thu Jan 22 19:43:34 2009 +0000 1 new ATR name git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4154 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 11e024a05900978f78c7e5de500faaa5636671ea Author: Ludovic Rousseau Date: Sat Jan 17 02:55:30 2009 +0000 use curl instead of wget on Darwin git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4153 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) commit 837181c850ae41f46b2c1e017c0af30660e4b461 Author: Ludovic Rousseau Date: Sat Jan 17 02:47:59 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4152 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 0e68dd6ee72a965bf90af98f9b6f8d32d7e10268 Author: Ludovic Rousseau Date: Fri Jan 16 17:16:54 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4151 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 524fa150a30bb7daf3560dc56a49844e2fc12468 Author: Ludovic Rousseau Date: Thu Jan 15 20:08:51 2009 +0000 check for PnP support at run time instead of using a #define git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4150 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 87 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 49 insertions(+), 38 deletions(-) commit 3181936213386139630270856f50a75bb4b58d22 Author: Ludovic Rousseau Date: Wed Jan 14 12:30:59 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4149 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f0a151a98a807844be56f721e5ded53f5bbadf52 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Fri Jan 9 08:26:26 2009 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_15'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4148 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_15/ATR_analysis | 844 +++++++++++++ tags/rel-1_4_15/ATR_analysis.1p | 46 + tags/rel-1_4_15/LICENCE | 340 ++++++ tags/rel-1_4_15/MANIFEST | 18 + tags/rel-1_4_15/Makefile | 49 + tags/rel-1_4_15/README | 324 +++++ tags/rel-1_4_15/TODO | 6 + tags/rel-1_4_15/create_distrib.sh | 90 ++ tags/rel-1_4_15/gscriptor | 894 ++++++++++++++ tags/rel-1_4_15/gscriptor.1p | 45 + tags/rel-1_4_15/gscriptor.desktop | 7 + tags/rel-1_4_15/gscriptor.gtk1.2 | 734 +++++++++++ tags/rel-1_4_15/pcsc_scan.1 | 78 ++ tags/rel-1_4_15/pcsc_scan.c | 424 +++++++ tags/rel-1_4_15/scriptor | 171 +++ tags/rel-1_4_15/scriptor.1p | 86 ++ tags/rel-1_4_15/smartcard_list.txt | 2338 ++++++++++++++++++++++++++++++++++++ tags/rel-1_4_15/test.script | 25 + 18 files changed, 6519 insertions(+) commit de4425b487aee9b458205cb73de4dbf7d01a959f (tag: pcsc-tools-1.4.15) Author: Ludovic Rousseau Date: Fri Jan 9 08:26:25 2009 +0000 release 1.4.15 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4147 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit 18c20966432537f794acb366f7e63bf0e19a8f78 Author: Ludovic Rousseau Date: Tue Jan 6 21:06:48 2009 +0000 the last reader in the array is at [nbReaders-1] not [nbReaders] git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4146 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 681b289aed0c427d48f04b24f0f629f5535ec7e4 Author: Ludovic Rousseau Date: Tue Jan 6 21:05:41 2009 +0000 allocate nbReaders+1 instead of nbReaders reader since we now also have the "\\?PnP?\Notification" reader git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4145 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 53a09b08d90df7bbaf6c9ca4218ca54cb5bc30f2 Author: Ludovic Rousseau Date: Tue Jan 6 21:04:13 2009 +0000 use SCARD_STATE_UNAWARE instead of SCARD_STATE_EMPTY for an uninitialised state git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4144 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit d420d57363536515d78874ae9e3ea1febf35bfc2 Author: Ludovic Rousseau Date: Tue Jan 6 21:03:04 2009 +0000 initialise dwReaders git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4143 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b17eda2f13206f6b55fa3ada02dca5376f93f6ff Author: Ludovic Rousseau Date: Sat Jan 3 19:16:05 2009 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4142 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 9d986259235af6c35362fd8c68e126c0f127ce13 Author: Ludovic Rousseau Date: Sat Jan 3 16:35:44 2009 +0000 check the number of readers instead of just SCARD_E_NO_READERS_AVAILABLE (needed for old versions of pcsc-lite) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4141 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) commit 264e14d23b4af417c5ba608d4b748c20822ae5cc Author: Ludovic Rousseau Date: Sat Jan 3 16:31:15 2009 +0000 do not check for the \\?PnP?\Notification reader if PNP is not used. SCardGetStatusChange() returns immediately for an unknown reader git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4140 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) commit 1e998b2c8054a408162b616e78ab14f04186c15a Author: Ludovic Rousseau Date: Sat Jan 3 16:16:14 2009 +0000 use \\?PnP?\Notification to detect reader add/remove git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4139 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) commit 6eaa393ce6dfd0d72e8d3ffd05f001e4ded63176 Author: Ludovic Rousseau Date: Sat Jan 3 15:44:41 2009 +0000 change copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4138 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit a2d0573710f55b942cf85bb786014fcb30d64109 Author: Ludovic Rousseau Date: Sat Jan 3 15:44:02 2009 +0000 use a macro for test_rv() to use the colors git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4137 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) commit 784b25fa00935c8cb193f08302d35914990d3b8f Author: Ludovic Rousseau Date: Sat Jan 3 15:10:07 2009 +0000 use test_rv() instead of LOG() git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4136 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 51 ++++++++++++++++++--------------------------------- 1 file changed, 18 insertions(+), 33 deletions(-) commit fef2864f6ee43636bc4750615c837c651a3410ec Author: Ludovic Rousseau Date: Sat Jan 3 14:54:28 2009 +0000 use "\\?PnP?\Notification" mechanism when possible git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4135 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) commit 0394b78218a3a797f410c1e83a5be8cab7719646 Author: Ludovic Rousseau Date: Sat Jan 3 14:45:13 2009 +0000 check for SCARD_E_NO_READERS_AVAILABLE to detect if no readers are present git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4134 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) commit 598cb2babe2468addbb904b1ae5915cdc1bf4ccb Author: Ludovic Rousseau Date: Fri Jan 2 07:02:38 2009 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4133 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 8159b2875e0d34754a8bd95ac7ea58937ca30faf Author: Ludovic Rousseau Date: Wed Dec 31 20:08:07 2008 +0000 typo in Mhz git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4132 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit ea9851bc2c493121df70b4e48c57df34a1287084 Author: Ludovic Rousseau Date: Wed Dec 31 15:22:30 2008 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4131 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 73d6523533a91877a50f74dac4973553a2bd5dbf Author: Ludovic Rousseau Date: Wed Dec 31 15:17:40 2008 +0000 typo in previous patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4130 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 5aa3d0e0c7aeda4d34eda06839061ae2c45f91f3 Author: Ludovic Rousseau Date: Wed Dec 31 15:05:58 2008 +0000 also display the max frequency associated with Fi git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4129 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) commit 5e4786fa3144d39e96778c1db25062fc86b8a162 Author: Ludovic Rousseau Date: Wed Dec 31 14:40:15 2008 +0000 check if Fi is RFU when calculating baud rate git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4128 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 9a7cfc8fd4fd86e039aba92992dfa0564a2fc911 Author: Ludovic Rousseau Date: Wed Dec 31 14:35:45 2008 +0000 default clock of CCID readers is, in general, 4 MHz instead of 3.57 MHz git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4127 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 873341cd86d26e3ed7f2a70aeb226110dcc1d929 Author: Ludovic Rousseau Date: Wed Dec 31 13:58:31 2008 +0000 add value for Di=7 (7816-3:2006 page 19) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4126 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 00e225376af1615c3aa2b570f913cb5c30713f64 Author: Ludovic Rousseau Date: Tue Dec 30 20:03:07 2008 +0000 replace spaces with tab git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4125 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 02d3f4caad28e82489990b584f328b80716ae390 Author: Ludovic Rousseau Date: Tue Dec 30 10:30:33 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4124 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 854bb29cc72ee751d381ab4cc03287431846996b Author: Ludovic Rousseau Date: Mon Dec 29 13:35:32 2008 +0000 1 new card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4123 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 4d87f73c8b2e12264a6b4f25183ea68552b6bfc7 Author: Ludovic Rousseau Date: Sun Dec 28 19:36:52 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4122 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit cfb0958ecee5eb90eb6243b2644d88149093aae4 Author: Ludovic Rousseau Date: Sun Dec 28 19:34:50 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4121 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit c07d2f5a05e863edcf3acc8c16ddb73b76ba992f Author: Ludovic Rousseau Date: Tue Dec 16 16:45:41 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4120 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 5cb7f5312bdb8a401e7630d04d713d4375997669 Author: Ludovic Rousseau Date: Fri Dec 12 21:41:48 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4119 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5fb07eceea3dc84ed381084347f67711b2cf2ae2 Author: Ludovic Rousseau Date: Fri Dec 12 12:50:56 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4118 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 1c4aeafb4bd2c3c1fcc1a6bbeb2ec10a1ac7e1f8 Author: Ludovic Rousseau Date: Tue Dec 9 19:54:13 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4117 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 0f2f4c4902396a46ae9be0bd961d13c58d25f24c Author: Ludovic Rousseau Date: Thu Dec 4 20:35:33 2008 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4116 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) commit 93ada6363a603ceb6577f18599a208c4a47c2e64 Author: Ludovic Rousseau Date: Sat Nov 29 13:36:52 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4115 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 6bc35ad56e7f7ece0ce61ac6e8d7132d39a65b73 Author: Ludovic Rousseau Date: Fri Nov 28 12:13:33 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4114 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 01474db5c0d9705ba1837fef37a095ec38eb664e Author: Ludovic Rousseau Date: Sun Nov 23 13:16:16 2008 +0000 WriteConfigFile: do not save undefined values git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4113 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit c33855d4fd6dfe227b9ee57c400d7dfa4140e950 Author: Ludovic Rousseau Date: Sun Nov 23 13:15:20 2008 +0000 use defined instead of exists to check if $hConfig{'reader'} is defined git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4112 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 9b6cd272ec459e7888ab68457c8ebcef299d3840 Author: Ludovic Rousseau Date: Sun Nov 23 08:52:16 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4111 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 73544544c39e1bdf3e44d4a0150f551eeea0a78a Author: Ludovic Rousseau Date: Tue Nov 18 19:58:38 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4110 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 615fdf92b154fb7b824d2d9e944dad80182304d8 Author: Ludovic Rousseau Date: Tue Nov 18 19:42:39 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4109 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 58f81c3dcf6a2c9cfb5f1d7ebc4d10b6b3af888b Author: Ludovic Rousseau Date: Sat Nov 15 16:20:33 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4108 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 17d89280dbc4c878034e6305f513254d0ed90659 Author: Ludovic Rousseau Date: Sun Nov 9 15:39:13 2008 +0000 add URL for Infineon Mifare SLE 66R35 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4107 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 8a6a75e467cd4f44f781b7cc43e106e851073dfb Author: Ludovic Rousseau Date: Wed Nov 5 14:59:03 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4106 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 58660932926b87baecc81ad526aa29611c94d7c9 Author: Ludovic Rousseau Date: Wed Nov 5 12:11:18 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4105 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 03c8271385a50dfa0460d5bbdfbbfe03b573b63c Author: Ludovic Rousseau Date: Sat Nov 1 17:58:25 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4104 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- trunk/smartcard_list.txt | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) commit 533a5c014c2d6a11ed4013af9267ff2834c09167 Author: Ludovic Rousseau Date: Wed Oct 22 12:47:07 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4103 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d1ed93e6240812afdfb60825c3d973d4a774e1ce Author: Ludovic Rousseau Date: Wed Oct 8 18:57:27 2008 +0000 request a card description in english git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4102 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8f59e07849527306fd29e721f3902187796dc46c Author: Ludovic Rousseau Date: Wed Oct 8 18:53:26 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4101 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 9b02d0a52211e2c2378db37a4c84ca6355da34d1 Author: Ludovic Rousseau Date: Wed Oct 8 11:38:32 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4100 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e0983ab00b10bb3e04b969f56016a12dc2336c83 Author: Ludovic Rousseau Date: Wed Oct 1 21:24:36 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4099 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 876b941d35f2c64c8ea54d4c549ac375e4f27fe5 Author: Ludovic Rousseau Date: Tue Sep 30 18:56:15 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4098 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d95d860c1da20c6b9e81024fc56b1e0df924d8c0 Author: Ludovic Rousseau Date: Sat Sep 27 15:55:01 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4097 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 3b1084f5db7ad25d869da93b602d0e25c46a97f4 Author: Ludovic Rousseau Date: Wed Sep 24 11:37:25 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4096 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit f15b2f09e291b1ef2ab9607a06677a747fe9c32c Author: Ludovic Rousseau Date: Sun Sep 21 14:02:26 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4095 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 9aa899fe4a881a176f8586d979d0909892fbf9a1 Author: Ludovic Rousseau Date: Sat Sep 13 10:04:50 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4094 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ac720d9e9ae1d0ffb8830fc57d357071a0cd464d Author: Ludovic Rousseau Date: Tue Sep 9 19:10:31 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4093 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 0859d95be36564d5903c7b8203e1fdb09169748c Author: Ludovic Rousseau Date: Sun Sep 7 11:48:34 2008 +0000 use a LOG() macro to hide DWORD format issues on Mac OS X git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4092 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) commit b8490d80cf5a8b7b28d34f898472d49446188ea6 Author: Ludovic Rousseau Date: Sun Sep 7 11:42:17 2008 +0000 define SCARD_E_NO_READERS_AVAILABLE if not already available git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4091 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d57a276f9bd3c51e905fdcf0ad0c4f9729d9787b Author: Ludovic Rousseau Date: Sun Sep 7 11:42:16 2008 +0000 do not use -framework PCSC for CFLAGS on Mac OS X -framework: linker input file unused because linking not done git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4090 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4d5be1215b27708c43d2e90948227b097f54ee46 Author: Ludovic Rousseau Date: Wed Sep 3 07:57:40 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4089 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e72ed6168e6695adb52772cd0ea1ddae4b03d7ec Author: Ludovic Rousseau Date: Fri Aug 29 17:35:45 2008 +0000 truncate the ATR if extra bytes are present (like on Leopard with an ATR padded with 0 up to 33 bytes) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4088 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 3cfec27ccdc8217fe15bf81ccc240862d45e3c6c Author: Ludovic Rousseau Date: Tue Aug 26 16:08:29 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4087 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) commit acf81cecd1dd35da3a2f7a5c756ca81a7fb10be4 Author: Ludovic Rousseau Date: Sun Aug 17 11:10:18 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4086 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8d4edd1383794873176a21150f524b891723d8ba Author: Ludovic Rousseau Date: Sat Aug 9 08:04:40 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4085 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 74b09fd04ed8d2161d5d57ad45deb0b137ee19a7 Author: Ludovic Rousseau Date: Wed Aug 6 18:37:34 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4084 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit d56580ae0ca42f5d39d1026f2e21d5663b47289e Author: Ludovic Rousseau Date: Fri Aug 1 21:27:08 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4083 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 489e21fabe7e2a3adbcc296e225e6dcf174f76e3 Author: Ludovic Rousseau Date: Wed Jul 30 16:43:15 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4082 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 7adb328e887377fd9306e014913fb57e33da9813 Author: Ludovic Rousseau Date: Tue Jul 29 15:51:17 2008 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4081 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) commit 3ece8556e85a9e9f61f7f17c3481c9a92fd13332 Author: Ludovic Rousseau Date: Mon Jul 28 08:33:32 2008 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4080 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 126bb47163252637a06cd499b490dac99d57b66d Author: Ludovic Rousseau Date: Mon Jul 28 08:29:51 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4079 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 95dd108e16bcd8c5b7037273ca8511ae28294f1e Author: Ludovic Rousseau Date: Mon Jul 28 08:24:37 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4078 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 6ca0fae845ad9a480ef70c04652817fa53144bdd Author: Ludovic Rousseau Date: Fri Jul 4 23:10:34 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4077 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 20c8c97d2adb0292ca29f3a2e1540224cf315471 Author: Ludovic Rousseau Date: Fri Jun 27 10:13:17 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4076 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) commit 93dfd0e255faa81acf19592f257cb6f316edc0e4 Author: Ludovic Rousseau Date: Fri Jun 20 18:30:04 2008 +0000 1 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4075 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 3d5d165570d2bafb6eff8458c3f593c1c197cbc1 Author: Ludovic Rousseau Date: Tue Jun 17 08:12:47 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4074 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4970d5c25627f7eb1f3dcf1cf967b5d3a5525eaa Author: Ludovic Rousseau Date: Tue May 27 16:35:52 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4073 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f29bd511a4f96eba1883bfa5f2cb5613538384a2 Author: Ludovic Rousseau Date: Tue May 27 16:34:06 2008 +0000 typo git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4072 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8fdfb9165c5a6ec9feaf9d59bfe99c7e35d70309 Author: Ludovic Rousseau Date: Sun May 25 15:09:19 2008 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4071 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) commit 124c69c57544c8a2f0d0f5fed941a2ec5d47f2f3 Author: Ludovic Rousseau Date: Thu May 22 16:03:58 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4070 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) commit bc4a306f52f5d69f1ecca9b9405fdd2daf502505 Author: Ludovic Rousseau Date: Wed May 21 12:26:49 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4069 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit c7783c9cc71a25d708b782cea4f2275f2bba81a7 Author: Ludovic Rousseau Date: Wed May 21 06:45:21 2008 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4068 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) commit 2e59c4f87a86a84d63593af6a2d3cf32036ab652 Author: Ludovic Rousseau Date: Wed May 21 06:42:37 2008 +0000 convert the ATR in uppercase git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4067 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 14c94ede37193780a54d47c2e6cd102ea7d27e8f Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sun May 11 13:33:54 2008 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_14'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4066 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_14/ATR_analysis | 830 ++++++++++++++ tags/rel-1_4_14/ATR_analysis.1p | 46 + tags/rel-1_4_14/LICENCE | 340 ++++++ tags/rel-1_4_14/MANIFEST | 18 + tags/rel-1_4_14/Makefile | 49 + tags/rel-1_4_14/README | 314 ++++++ tags/rel-1_4_14/TODO | 6 + tags/rel-1_4_14/create_distrib.sh | 90 ++ tags/rel-1_4_14/gscriptor | 894 +++++++++++++++ tags/rel-1_4_14/gscriptor.1p | 45 + tags/rel-1_4_14/gscriptor.desktop | 7 + tags/rel-1_4_14/gscriptor.gtk1.2 | 734 +++++++++++++ tags/rel-1_4_14/pcsc_scan.1 | 78 ++ tags/rel-1_4_14/pcsc_scan.c | 390 +++++++ tags/rel-1_4_14/scriptor | 171 +++ tags/rel-1_4_14/scriptor.1p | 86 ++ tags/rel-1_4_14/smartcard_list.txt | 2097 ++++++++++++++++++++++++++++++++++++ tags/rel-1_4_14/test.script | 25 + 18 files changed, 6220 insertions(+) commit b72d2ad73a7716fb44cdad3f4ae7c94ba6b0df58 (tag: pcsc-tools-1.4.14) Author: Ludovic Rousseau Date: Sun May 11 13:33:53 2008 +0000 release 1.4.14 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4065 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) commit ff4c0f40ed3bcdfc9510db914abfce6e9a492b09 Author: Ludovic Rousseau Date: Sun May 11 13:30:55 2008 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4064 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 8db60868be4746680655c16f3839481f1ccc8395 Author: Ludovic Rousseau Date: Sun May 11 13:28:44 2008 +0000 use SCARD_SHARE_SHARED instead of SCARD_SHARE_EXCLUSIVE to not lock the card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4063 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 8 ++++---- trunk/scriptor | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) commit a826af0140876dffd62dbe3fab05c0178ee38a04 Author: Ludovic Rousseau Date: Wed May 7 19:02:11 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4062 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 0316f70aab070d93b06e7fed3f145ca7fb9e7a9b Author: Ludovic Rousseau Date: Wed May 7 18:58:51 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4061 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 05d9de15a89ff3594122c9e5fc247319bf89813d Author: Ludovic Rousseau Date: Wed May 7 18:57:17 2008 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4060 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 186fe82b4701699ed6e505239a7164359fc96078 Author: Ludovic Rousseau Date: Sat Apr 26 13:34:21 2008 +0000 add support for ATR with : as byte separator (ATR reported by "opensc-tool --atr" for example) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4059 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit e3a4bce1e8d77910d600a6e80001b854bdf544dc Author: Ludovic Rousseau Date: Sun Apr 20 12:29:04 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4058 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 7a362783a571e014c396e7b1d6de4a6d34a32266 Author: Ludovic Rousseau Date: Fri Apr 4 13:48:05 2008 +0000 1 new description for a known ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4057 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit f3e522f9062810b70db83de234e98b8b9f227994 Author: Ludovic Rousseau Date: Tue Apr 1 18:47:30 2008 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4056 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 02ba8e84e6c968ea7ff762454791858a06e1eb5a Author: Ludovic Rousseau Date: Sat Mar 29 15:05:12 2008 +0000 correct an ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4055 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 8af8dcacdd97a751e30c7079fc0bf4bf75bd323a Author: Ludovic Rousseau Date: Sat Mar 29 13:05:42 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4054 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 52e2e751c40086faa5113cd574b3915b34777757 Author: Ludovic Rousseau Date: Sat Mar 29 13:05:00 2008 +0000 10 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4053 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) commit ba00bf2e9a7312dc09fa9be2ea6798135061b3a3 Author: Ludovic Rousseau Date: Mon Mar 24 19:14:21 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4052 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 78750c89a7923c5a8f110dbf79b9e806e75e327c Author: Ludovic Rousseau Date: Mon Mar 24 16:04:38 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4051 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 6c30bd25d4b77111945c74f4541056c1dc83c0ff Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sun Mar 23 17:05:22 2008 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_13'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4050 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_13/ATR_analysis | 829 +++++++++++++++ tags/rel-1_4_13/ATR_analysis.1p | 46 + tags/rel-1_4_13/LICENCE | 340 ++++++ tags/rel-1_4_13/MANIFEST | 18 + tags/rel-1_4_13/Makefile | 49 + tags/rel-1_4_13/README | 306 ++++++ tags/rel-1_4_13/TODO | 6 + tags/rel-1_4_13/create_distrib.sh | 90 ++ tags/rel-1_4_13/gscriptor | 894 ++++++++++++++++ tags/rel-1_4_13/gscriptor.1p | 45 + tags/rel-1_4_13/gscriptor.desktop | 7 + tags/rel-1_4_13/gscriptor.gtk1.2 | 734 +++++++++++++ tags/rel-1_4_13/pcsc_scan.1 | 78 ++ tags/rel-1_4_13/pcsc_scan.c | 390 +++++++ tags/rel-1_4_13/scriptor | 171 +++ tags/rel-1_4_13/scriptor.1p | 86 ++ tags/rel-1_4_13/smartcard_list.txt | 2027 ++++++++++++++++++++++++++++++++++++ tags/rel-1_4_13/test.script | 25 + 18 files changed, 6141 insertions(+) commit 606a4ea696b392ddc81e502f8ffff2b3c0ba1f7c (tag: pcsc-tools-1.4.13) Author: Ludovic Rousseau Date: Sun Mar 23 17:05:21 2008 +0000 release 1.4.13 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4049 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit eb8075e6cee46e183c29aa75563c6fcb622085f1 Author: Ludovic Rousseau Date: Sun Mar 23 17:05:20 2008 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4048 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4e6606cfa395199212eb041dafc0b51cd6ba4bae Author: Ludovic Rousseau Date: Sun Mar 23 13:33:13 2008 +0000 Initialise the first byte of mszReaders to '\0' to avoid looping when SCardListReaders returns SCARD_E_NO_READERS_AVAILABLE (without setting mszReaders parameter) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4047 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit a4da23df3a41f16262e727b5163a8481ec54ee01 Author: Ludovic Rousseau Date: Thu Mar 20 19:31:55 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4046 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 5e27cebb339726b499a4e68bbb3a1338db55ab96 Author: Ludovic Rousseau Date: Wed Mar 12 14:49:19 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4045 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit c67ea7c648382ba0339394371203fd393064c6b6 Author: Ludovic Rousseau Date: Wed Mar 12 14:36:02 2008 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4044 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit 23d8be19ee9897d35750be8f8e02923335220d1a Author: Ludovic Rousseau Date: Wed Mar 12 09:52:58 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4043 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 63a4d5b62e20667c5180e1505377dd9ff7bfe0b5 Author: Ludovic Rousseau Date: Sun Mar 9 15:17:28 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4042 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 40d2f6ebf8991747a015e0d81af3cf0e56139876 Author: Ludovic Rousseau Date: Wed Mar 5 12:39:08 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4041 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 86f2ec7a17bf4e364d4cefb28b00456a4c1bd81f Author: Ludovic Rousseau Date: Wed Mar 5 12:22:43 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4040 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 3639f897d84a2c8f6b5b84ecc5574be58ea98d10 Author: Ludovic Rousseau Date: Wed Feb 27 10:23:21 2008 +0000 6 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4039 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) commit c376b1f91a048064c32f90b3aafe2980607a0f51 Author: Ludovic Rousseau Date: Sun Feb 24 08:38:27 2008 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4038 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit d31c466269f382ea1de92d662e910e92619d35f6 Author: Ludovic Rousseau Date: Fri Feb 22 13:16:03 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4037 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 0c671eb96780511fc5efa7000e3ad69d84d00187 Author: Ludovic Rousseau Date: Tue Feb 19 12:42:39 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4036 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 9b44b4a7685f5fd22f36da8fe7e61f504a34b839 Author: Ludovic Rousseau Date: Sun Feb 10 16:20:40 2008 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4035 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 05dd3fbe0d524039a36b2fb87fd8e84008d2a178 Author: Ludovic Rousseau Date: Sat Feb 9 14:33:56 2008 +0000 new card for 1 ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4034 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit f18b61e19e40d8d0f2f9104fdf48e41e11b3b93b Author: Ludovic Rousseau Date: Sat Feb 9 09:25:29 2008 +0000 1 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4033 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) commit d3ff7ae52dd6c726a18798603e5b386b09b04948 Author: Ludovic Rousseau Date: Wed Feb 6 07:53:41 2008 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4032 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 9e36dbb68486de0a653143a6d0abf350d75af734 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sat Feb 2 15:56:09 2008 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_12'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4031 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_12/ATR_analysis | 829 ++++++++++++++++ tags/rel-1_4_12/ATR_analysis.1p | 46 + tags/rel-1_4_12/LICENCE | 340 +++++++ tags/rel-1_4_12/MANIFEST | 18 + tags/rel-1_4_12/Makefile | 49 + tags/rel-1_4_12/README | 302 ++++++ tags/rel-1_4_12/TODO | 6 + tags/rel-1_4_12/create_distrib.sh | 90 ++ tags/rel-1_4_12/gscriptor | 894 +++++++++++++++++ tags/rel-1_4_12/gscriptor.1p | 45 + tags/rel-1_4_12/gscriptor.desktop | 7 + tags/rel-1_4_12/gscriptor.gtk1.2 | 734 ++++++++++++++ tags/rel-1_4_12/pcsc_scan.1 | 78 ++ tags/rel-1_4_12/pcsc_scan.c | 389 ++++++++ tags/rel-1_4_12/scriptor | 171 ++++ tags/rel-1_4_12/scriptor.1p | 86 ++ tags/rel-1_4_12/smartcard_list.txt | 1924 ++++++++++++++++++++++++++++++++++++ tags/rel-1_4_12/test.script | 25 + 18 files changed, 6033 insertions(+) commit 2d909a43b92b5aaf9f589ff97b440216c6cf9608 (tag: pcsc-tools-1.4.12) Author: Ludovic Rousseau Date: Sat Feb 2 15:56:08 2008 +0000 release 1.4.12 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4030 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit c5c3d82765c69f57a3a488e6becc7bfefa6ebd2e Author: Ludovic Rousseau Date: Sat Feb 2 15:51:00 2008 +0000 handle SCARD_E_NO_READERS_AVAILABLE when no reader is found git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4029 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) commit 704c6c78e74b038d16bd3de4a5847c2fee5ebb8a Author: Ludovic Rousseau Date: Sat Feb 2 12:22:30 2008 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4028 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit ba154db4621285a547196848597dff3901e9b168 Author: Ludovic Rousseau Date: Sat Jan 26 12:20:40 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4027 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 818fbf6623daaba9006fb6257d663160059b15b7 Author: Ludovic Rousseau Date: Sun Jan 20 14:27:34 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4026 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) commit 540b60dc9e5b7d12aaa14afcfebda82bb0b5843b Author: Ludovic Rousseau Date: Sun Jan 13 13:47:35 2008 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4025 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit ed4679e1f7950cd7e4b7cf3b9b9224c8df118c7f Author: Ludovic Rousseau Date: Fri Jan 11 12:24:49 2008 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4024 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 8045a0150cfe1c5b064beec9fb00844b1c2309dc Author: Ludovic Rousseau Date: Sat Jan 5 11:13:30 2008 +0000 update a card description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4023 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 1d182bdb4e0fd139ca6bf0a848094fdba8e7d22f Author: Ludovic Rousseau Date: Sun Dec 30 20:42:23 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4022 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 74b5369a17c236b8b12b62dc8a27375de43b72a7 Author: Ludovic Rousseau Date: Sat Dec 15 13:44:38 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4021 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit af8a9b0e550677492ad5a6b69840229b783fa75d Author: Ludovic Rousseau Date: Fri Dec 14 10:02:38 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4020 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit e6db3962d06cda50206277b0b77e059878b530a2 Author: Ludovic Rousseau Date: Sat Dec 8 14:31:03 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4019 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 39a7c3f4bac24cb508475da896ab9ad587bd28aa Author: Ludovic Rousseau Date: Tue Dec 4 21:12:59 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4018 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit bd9917a37f4c84a270d222094ae2af3ebb059fbd Author: Ludovic Rousseau Date: Thu Nov 29 19:38:05 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4017 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 68039021296234efb38f9a225127fdd28a4ed048 Author: Ludovic Rousseau Date: Wed Nov 28 12:42:03 2007 +0000 Correct 1 ATR description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4016 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 2499e07b1b83cd96ce374d5fbab40657234b1410 Author: Ludovic Rousseau Date: Fri Nov 9 20:39:48 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4015 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 35483a6f3a2de0a1524943e83236ed9312c464df Author: Ludovic Rousseau Date: Thu Nov 1 15:50:23 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4014 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 68e82e3680f3a0c4c143bdddcd1b1143d2674610 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Oct 30 22:35:58 2007 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_11'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4013 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_11/ATR_analysis | 829 ++++++++++++++++ tags/rel-1_4_11/ATR_analysis.1p | 46 + tags/rel-1_4_11/LICENCE | 340 +++++++ tags/rel-1_4_11/MANIFEST | 18 + tags/rel-1_4_11/Makefile | 49 + tags/rel-1_4_11/README | 298 ++++++ tags/rel-1_4_11/TODO | 6 + tags/rel-1_4_11/create_distrib.sh | 90 ++ tags/rel-1_4_11/gscriptor | 894 +++++++++++++++++ tags/rel-1_4_11/gscriptor.1p | 45 + tags/rel-1_4_11/gscriptor.desktop | 7 + tags/rel-1_4_11/gscriptor.gtk1.2 | 734 ++++++++++++++ tags/rel-1_4_11/pcsc_scan.1 | 78 ++ tags/rel-1_4_11/pcsc_scan.c | 384 ++++++++ tags/rel-1_4_11/scriptor | 171 ++++ tags/rel-1_4_11/scriptor.1p | 86 ++ tags/rel-1_4_11/smartcard_list.txt | 1871 ++++++++++++++++++++++++++++++++++++ tags/rel-1_4_11/test.script | 25 + 18 files changed, 5971 insertions(+) commit 4c986c1ff2fa23eec3ca366a7b609ccc10d391da Author: Ludovic Rousseau Date: Tue Oct 30 22:35:57 2007 +0000 compile for Linux by default git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4012 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit 4eb78bb56857d5181aef8ccda860dbf236ef3d5a (tag: pcsc-tools-1.4.11) Author: Ludovic Rousseau Date: Tue Oct 30 22:28:01 2007 +0000 release 1.4.11 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4011 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit b2ffccf1e331426aa7ca4e72b337d2c78d433851 Author: Ludovic Rousseau Date: Tue Oct 30 21:12:54 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4010 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f7169c14c3f5050ecb75c5bda8c213524e01ae12 Author: Ludovic Rousseau Date: Wed Oct 24 15:56:47 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4009 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 01b752e9fb9064d7cf0dc0629081886462e751dd Author: Ludovic Rousseau Date: Wed Oct 24 15:55:45 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4008 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5904f26d8482709a9d38a0d173d4a295d6854c22 Author: Ludovic Rousseau Date: Tue Oct 23 19:49:07 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4007 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit bb7acc02e01d923ea17ffc5d750b485d265265e1 Author: Ludovic Rousseau Date: Sun Oct 21 12:37:01 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4006 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) commit a7ed330253592af1c8d65b93de35b8cfc3d0e4cc Author: Ludovic Rousseau Date: Sun Oct 7 07:44:50 2007 +0000 typos git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4005 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit d7ee95b8f7cff78fb9a00a9fb311c7fdf3842f10 Author: Ludovic Rousseau Date: Sun Oct 7 07:44:20 2007 +0000 typo git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4004 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 2a1b2b540ce86b9b9d59041b88a2a24e10de13de Author: Ludovic Rousseau Date: Sun Oct 7 07:40:50 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4003 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 10 +++++----- trunk/smartcard_list.txt | 5 ++++- 2 files changed, 9 insertions(+), 6 deletions(-) commit 9c6c1895366f9b169f1de53a5a57bf6bc581025f Author: Ludovic Rousseau Date: Sat Oct 6 09:07:45 2007 +0000 use env perl instead of using a hardcoded path git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4002 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 4 ++-- trunk/scriptor | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) commit e5a7e20c14f5ee31c9974e82a6fec32b78bad2b9 Author: Ludovic Rousseau Date: Fri Oct 5 16:39:44 2007 +0000 print card description in blue git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4001 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit e46c4513bb3ff7b078c268912f09de317cab5e1e Author: Ludovic Rousseau Date: Fri Oct 5 16:29:17 2007 +0000 remove unneeded " " characters git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@4000 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) commit cd1df5ea7248a77cf82e89489523ea2d18609521 Author: Ludovic Rousseau Date: Fri Oct 5 16:28:00 2007 +0000 use /usr/bin/env perl to get the correct Perl git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3999 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 0c1a52ecbc2b50877ae23012c68d8dc0fd36cbe6 Author: Ludovic Rousseau Date: Fri Oct 5 14:51:18 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3998 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 33f5ce0600344a6f2148eb95ad45aa0ec46ec977 Author: Ludovic Rousseau Date: Sun Sep 30 12:38:43 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3997 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 07b1d0df48be4026fe2e570e14c2b80ce1c3cafc Author: Ludovic Rousseau Date: Fri Sep 21 07:22:40 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3996 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e70cb24bcc95c8f0fc77ee9175c8ec5cf4c6df4d Author: Ludovic Rousseau Date: Sun Sep 16 13:23:15 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3995 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit 3cdce73efb8024023519c84ef030ee2afd4e8ebd Author: Ludovic Rousseau Date: Sun Sep 16 13:18:01 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3994 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 8958c72df45a1aaef1dc44d9107716779b1d13c3 Author: Ludovic Rousseau Date: Sun Sep 16 13:14:50 2007 +0000 4 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3993 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 5cb9fdcb37f832a9a161b569b688f03d7bcb9f5e Author: Ludovic Rousseau Date: Thu Sep 13 20:06:12 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3992 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) commit 5019c70d23ab9e008b8a818542cc71853ef297f0 Author: Ludovic Rousseau Date: Tue Sep 11 20:15:28 2007 +0000 25 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3991 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 62 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 57 insertions(+), 5 deletions(-) commit 424c265d3f5849077a9a42ca2d30f5ba91152af3 Author: Ludovic Rousseau Date: Tue Sep 11 20:01:07 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3990 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 0ecca3f29be580378f18c8bf6754201e5ba526c0 Author: Ludovic Rousseau Date: Fri Aug 31 16:16:03 2007 +0000 11 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3989 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 45 ++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 5 deletions(-) commit 6fe5352a469b634bfc91ce86b79cda0967cc4f16 Author: Ludovic Rousseau Date: Thu Aug 30 18:55:24 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3988 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit d38190979a78b3e409bf681174ee64192846f223 Author: Ludovic Rousseau Date: Tue Aug 28 19:12:26 2007 +0000 8 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3987 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) commit 67e2a29721f0ab0b004fe8bb1b478b87b924ec6c Author: Ludovic Rousseau Date: Wed Aug 22 14:43:53 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3986 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 74a8d0fc2be7c6fc92ea186630262847477d69eb Author: Ludovic Rousseau Date: Wed Aug 22 13:33:16 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3985 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5e91ed57403ec9b30dfea777afff706d7fd895d5 Author: Ludovic Rousseau Date: Tue Aug 21 19:09:17 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3984 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 1f01f2ed77561b07a09a701c139a659269783039 Author: Ludovic Rousseau Date: Tue Aug 21 19:06:23 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3983 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 20d60e089145162ace0ede29233a1131377cd2d4 Author: Ludovic Rousseau Date: Tue Aug 14 15:55:53 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3982 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 81c7acf8b0d1cecbddb52fdb87da75dddcea329b (tag: pcsc-tools-1.4.10) Author: Ludovic Rousseau Date: Fri Aug 10 21:25:04 2007 +0000 release 1.4.10 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3981 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 8178b816c211eeec9ca6a392f7b3bcf0b35e9706 Author: Ludovic Rousseau Date: Fri Aug 10 21:23:24 2007 +0000 release numbers on more than on digit are also valid git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3980 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/create_distrib.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 8cd4e4232fbe7571f8cf309732d88b89d73cbe6c Author: Ludovic Rousseau Date: Fri Aug 10 21:08:30 2007 +0000 change the order of the button for the "The Chipcard::PCSC::Card object is not connected!\nDo you want to connect?" dialog so that the default button is OK git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3979 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 157b6ed216808e61b7683a64bef7682d4cf1f957 Author: Ludovic Rousseau Date: Fri Aug 10 21:03:14 2007 +0000 correctly display the ISO7816 error code even when the line is splitted git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3978 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 7657e2a925613d586ef35d904d2d0dc14797c9dc Author: Ludovic Rousseau Date: Fri Aug 10 21:02:43 2007 +0000 reset the command after execution. The line continuation feature was broken git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3977 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 7e0c66ddd6e58423a21164c24af594993cafcfd3 Author: Ludovic Rousseau Date: Tue Aug 7 17:15:17 2007 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3976 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit ab3568d73fdea3f2e3e6af252b6f68de23b5ca45 Author: Ludovic Rousseau Date: Tue Jul 31 19:05:49 2007 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3975 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) commit 4170e4872ffd3ebeb54eb17fb53ad7b97b1fc0d1 Author: Ludovic Rousseau Date: Sat Jun 30 14:22:37 2007 +0000 drops the deprecated Encoding field Thanks to Ville Skyttä for the patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3974 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor.desktop | 1 - 1 file changed, 1 deletion(-) commit 18c4f8922dbfd8d085247799ec8daa6941d085ca Author: Ludovic Rousseau Date: Tue Jun 26 16:58:30 2007 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3973 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 28661ae533c61a854d6c61163e4d4fb6910bf39e Author: Ludovic Rousseau Date: Wed Jun 20 19:14:39 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3972 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e332a22fec8e917ddbb18a9cf760e1cd2ff874c3 Author: Ludovic Rousseau Date: Wed Jun 20 19:12:35 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3971 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 8155ee1080343ab324207595d632b13ea5a151e1 Author: Ludovic Rousseau Date: Tue Jun 19 15:41:46 2007 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3970 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit b84fc460c2e3b8944e16786c8d70d9d170f532e4 Author: Ludovic Rousseau Date: Sat Jun 16 08:05:41 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3969 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e293afc52e2a81c6ed2185f381360ee4cdc06021 Author: Ludovic Rousseau Date: Tue Jun 12 18:44:35 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3968 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ef36ffbe70c23b28b786a7ffd726c7f8bee50ffb Author: Ludovic Rousseau Date: Fri Jun 8 12:39:17 2007 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3967 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) commit 082cfabaf10a6c379539bd9d26fab027c75cc9c2 Author: Ludovic Rousseau Date: Tue Jun 5 20:16:50 2007 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3966 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 02e8fa2bf824b692bbd46dffc06345318d69bac7 Author: Ludovic Rousseau Date: Fri Jun 1 14:08:59 2007 +0000 typo git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3965 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 5ceab2a56de3ded6de4f45dae83a37d181d7481f Author: Ludovic Rousseau Date: Fri Jun 1 13:13:41 2007 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3964 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit c7487cb21c84adca37c29451ef5d1e7a924dcd69 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Fri Jun 1 13:02:21 2007 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_9'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3963 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_9/ATR_analysis | 826 +++++++++++++++++++ tags/rel-1_4_9/ATR_analysis.1p | 46 ++ tags/rel-1_4_9/LICENCE | 340 ++++++++ tags/rel-1_4_9/MANIFEST | 18 + tags/rel-1_4_9/Makefile | 49 ++ tags/rel-1_4_9/README | 287 +++++++ tags/rel-1_4_9/TODO | 6 + tags/rel-1_4_9/create_distrib.sh | 87 ++ tags/rel-1_4_9/gscriptor | 893 ++++++++++++++++++++ tags/rel-1_4_9/gscriptor.1p | 45 ++ tags/rel-1_4_9/gscriptor.desktop | 8 + tags/rel-1_4_9/gscriptor.gtk1.2 | 734 +++++++++++++++++ tags/rel-1_4_9/pcsc_scan.1 | 78 ++ tags/rel-1_4_9/pcsc_scan.c | 384 +++++++++ tags/rel-1_4_9/scriptor | 171 ++++ tags/rel-1_4_9/scriptor.1p | 86 ++ tags/rel-1_4_9/smartcard_list.txt | 1609 +++++++++++++++++++++++++++++++++++++ tags/rel-1_4_9/test.script | 25 + 18 files changed, 5692 insertions(+) commit 3b6aa4049a533fee90c0e88bd4ee6821ad697c51 (tag: pcsc-tools-1.4.9) Author: Ludovic Rousseau Date: Fri Jun 1 13:02:20 2007 +0000 release 1.4.9 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3962 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 8f677841f1ffb16bf210e97d09616554fc06fbe9 Author: Ludovic Rousseau Date: Fri Jun 1 12:32:35 2007 +0000 do not display the value of an unknown tag if length is 0 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3961 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e95a679bab114964a8af3c3b100495f5f76ab350 Author: Ludovic Rousseau Date: Fri Jun 1 12:27:47 2007 +0000 if tag is unknown we display the data corresponding to the given length instead of parsing the data as a TLV git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3960 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit ef20e56679e6698951148fb525daeaf427efa9a4 Author: Ludovic Rousseau Date: Fri Jun 1 12:23:18 2007 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3959 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit eb227656e4002c3755e131625831cbeb5ff33a05 Author: Ludovic Rousseau Date: Thu May 31 16:41:13 2007 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3958 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit c1ec075b399ffec6e5694b4c5aee6d5b5b162524 Author: Ludovic Rousseau Date: Thu May 31 06:59:13 2007 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3957 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) commit cd5fa605ffaef0b82b999b2ee118d5cc859c28ae Author: Ludovic Rousseau Date: Sun May 27 16:36:08 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3956 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 63a41249a237349d5f836f5ab9b07711ca834637 Author: Ludovic Rousseau Date: Tue May 22 18:55:26 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3955 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 87d9ee1561979ad53ef7ba40492d136c26078ea2 Author: Ludovic Rousseau Date: Sat May 19 13:15:01 2007 +0000 echo the lines read from a file (commands, comments and emtpy lines) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3954 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 86efcc1ebeabdc3671cf825a968a2b0f55bfcd28 Author: Ludovic Rousseau Date: Fri May 18 19:07:25 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3953 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit f4529cba5d6a0df83de5ea39f7e332a3f3f2c0b8 Author: Ludovic Rousseau Date: Fri May 4 14:12:05 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3952 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 786fa50664615ceb61477851bd1541d5da595688 Author: Ludovic Rousseau Date: Wed May 2 19:10:12 2007 +0000 15 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3951 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) commit ddbebaefb006c88921fc1de20127f6fd081115e7 Author: Ludovic Rousseau Date: Tue May 1 19:33:51 2007 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3950 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 39c000f68b390d2bb6f312508927133c23ab9dad Author: Ludovic Rousseau Date: Fri Apr 13 09:18:16 2007 +0000 add a new description for an existing ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3949 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 39c8bea33854dcf23421a2e3e3839839425c02f3 Author: Ludovic Rousseau Date: Fri Apr 13 08:43:03 2007 +0000 reorder git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3948 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit ae355055d8cae12f46424450ba28726cdf80043c Author: Ludovic Rousseau Date: Mon Apr 9 15:18:41 2007 +0000 7 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3947 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 44 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) commit 135be12604c0550c92b86460ce2fbe17d144e97d Author: Ludovic Rousseau Date: Fri Apr 6 20:42:49 2007 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3946 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 39edfabf1c9afdff56ad6bca7e99cf68b42d7c2c Author: Ludovic Rousseau Date: Fri Apr 6 19:13:30 2007 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3945 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 8b275c12fc96fadb8d095fed1d43ed37121fc493 Author: Ludovic Rousseau Date: Tue Apr 3 20:24:10 2007 +0000 Card state in red git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3944 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 9d7ab926798761f8eb3009467f08615eced58be0 Author: Ludovic Rousseau Date: Tue Apr 3 20:23:58 2007 +0000 bytes/s -> bits/s git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3943 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit bcbd3a1d02a43e7e91f90e1fe0f69c45f532af4a Author: Ludovic Rousseau Date: Tue Apr 3 20:21:46 2007 +0000 add colors git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3942 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) commit 61b05a46475718fe4d64a16db35090fc20953a52 Author: Ludovic Rousseau Date: Thu Mar 29 19:17:33 2007 +0000 use pcsc_stringify_error() to display a human readable error message git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3941 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit e27a263a1c2915622741066d5e6ddafdd31fd3f5 Author: Ludovic Rousseau Date: Thu Mar 29 19:15:02 2007 +0000 add /usr/local/share/pcsc/smartcard_list.txt to SMARTCARD_LIST since this is the location of the default install git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3940 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 3a450ae703c6c381b30a72435752c543328e6e10 Author: Ludovic Rousseau Date: Wed Mar 21 17:33:34 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3939 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit b36346a0f66ffc2d908640947b9d17c1e12866a2 Author: Ludovic Rousseau Date: Tue Mar 6 19:58:35 2007 +0000 correct a typo git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3938 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 9db484c1efb81f256daa7956b5e3f3de1e217aee Author: Ludovic Rousseau Date: Tue Mar 6 17:09:03 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3937 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 1f36ad4b3d7b7eddf6997204ad457dda1eb54978 Author: Ludovic Rousseau Date: Mon Feb 26 16:48:46 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3936 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 822a91d5dfec358665c86a30fccc62b449adc212 Author: Ludovic Rousseau Date: Fri Feb 16 13:06:55 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3935 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fdf71fc859b9b0fb7aba20dd4c09101a59475ca8 Author: Ludovic Rousseau Date: Sun Jan 28 17:13:19 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3934 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 43230797a6b7b877281c0280015545bb5e769b24 Author: Ludovic Rousseau Date: Tue Jan 23 17:04:55 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3933 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fa6501fb876f696226dfb698d58160cc94d95e66 Author: Ludovic Rousseau Date: Sat Jan 20 15:46:21 2007 +0000 use LPSTR instead of the deprecated LPTSTR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3932 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 215eee0d2b81ab278c7deab924f5b2ff14085ba2 Author: Ludovic Rousseau Date: Fri Jan 19 14:29:50 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3931 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d32ef7f4efc65612a31f11f4280f95051c849e34 Author: Ludovic Rousseau Date: Thu Jan 18 17:38:13 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3930 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 097a75f8535d2caf882c924be2cac9970c018645 Author: Ludovic Rousseau Date: Wed Jan 17 20:52:34 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3929 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e6a273672bde6940320caa7e1f5103ade0d5804a Author: Ludovic Rousseau Date: Tue Jan 16 20:17:33 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3928 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit bdff701ad49666010c563a81a5d79ec67473bd7b Author: Ludovic Rousseau Date: Sat Jan 13 21:19:10 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3927 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2becc2698e21614395d0de6136b3163f2f125c69 Author: Ludovic Rousseau Date: Thu Jan 11 10:58:31 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3926 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit fa685597e13e903f6267ac57fbb327722ee6b778 Author: Ludovic Rousseau Date: Wed Jan 3 17:56:36 2007 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3925 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 977a3beba105418028a7b0f6de1b03c445d01d2f Author: Ludovic Rousseau Date: Sat Dec 30 11:00:08 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3924 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 6bbc665a1818a4844a138504cb6170d079945ee7 Author: Ludovic Rousseau Date: Thu Dec 28 08:06:30 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3923 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4adcd5943111099970ba2b1f7fc928f4f84293a6 Author: Ludovic Rousseau Date: Tue Dec 26 13:11:52 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3922 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5b8467479005c21d031310019a3ff5eee833333f Author: Ludovic Rousseau Date: Sun Dec 24 15:15:44 2006 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3921 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 08a6718f7365fa2d16aefec9452757e3cdf40f14 Author: Ludovic Rousseau Date: Sun Dec 17 20:48:05 2006 +0000 warn is some historical bytes are missing git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3920 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 46dd3cbe9d22678a3ac5e272a650bf7066b71d37 Author: Ludovic Rousseau Date: Wed Dec 13 13:17:29 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3919 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 9fc3e88fc3df328845cf9eed752fe9b134eba3e8 Author: Ludovic Rousseau Date: Tue Dec 12 15:13:56 2006 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3918 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 5edf4a5a5bd13b50de251ea0f2b44397dede8ba6 Author: Ludovic Rousseau Date: Tue Dec 12 12:35:54 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3917 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 928673d4819a781c4a71ee6c2cb7ca78ddf8d99f Author: Ludovic Rousseau Date: Tue Dec 5 20:00:30 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3916 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 8dd36e0701b1608a616ec8a6e5b819e828dfc1f2 Author: Ludovic Rousseau Date: Tue Nov 28 19:45:15 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3915 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4bd1985fa2266c66e6486115b3a4cce20106ce0b (tag: pcsc-tools-1.4.8) Author: Ludovic Rousseau Date: Sun Nov 26 14:49:50 2006 +0000 release 1.4.8 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3914 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 7415feffbd6274db2cefb52f10ad51880c5eeb22 Author: Ludovic Rousseau Date: Thu Nov 23 19:31:32 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3913 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ed15144bb2b80840fb2447f7f2ebf79173b913d3 Author: Ludovic Rousseau Date: Wed Nov 15 21:00:30 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3912 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 39d6e5c42ae5dafdeb040d164643b5abdd5c8483 Author: Ludovic Rousseau Date: Sat Nov 11 12:49:04 2006 +0000 add test for TC1=255 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3911 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 38a6290bb938b502fb742c2c954a3211da3bdfaf Author: Ludovic Rousseau Date: Sat Nov 11 12:40:56 2006 +0000 add case TB1=0: VPP is not electrically connected git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3910 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) commit 49b1634ed0a654e016a82df081b15b3d301a47f9 Author: Ludovic Rousseau Date: Sat Nov 11 12:31:49 2006 +0000 add the communication speed according to TA1 and a clock at 3.5712 MHz git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3909 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 3a39d8498819af3a3ce0680c48de353b6381c880 Author: Ludovic Rousseau Date: Sat Nov 11 12:26:58 2006 +0000 use %g instead of %.3f to display the cycles/ETU value to have 31 instead of 31.000 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3908 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 1872925a172e7df2d047bd5d4454b2dca193e727 Author: Ludovic Rousseau Date: Sat Nov 11 10:44:17 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3907 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 02cd7ca84f8f43763e38b8d24017cdce9446722a Author: Ludovic Rousseau Date: Wed Nov 8 19:44:23 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3906 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 836fc20955a90bd4c69770b37221af51223dad99 Author: Ludovic Rousseau Date: Sat Nov 4 14:24:02 2006 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3905 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) commit f99bb3526a59267ac1f84405ae581752748bf131 Author: Ludovic Rousseau Date: Sat Oct 28 14:44:10 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3904 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit ba1503f4c96463645166175884d7960e5df04016 Author: Ludovic Rousseau Date: Wed Oct 25 16:08:10 2006 +0000 cleanly fail (instead of looping forever) if the pcscd daemon just dies git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3903 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 4de7cc2110c289c3ba4960870cc4c3b7d03ba80e Author: Ludovic Rousseau Date: Tue Oct 17 17:39:10 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3902 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 3e6b815b86ed70ea2206f092f8523179f9a5f2b8 Author: Ludovic Rousseau Date: Sun Oct 15 16:01:19 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3901 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 59fb15f6fe85017181fe8cdb3f5d6a024e5b495f Author: Ludovic Rousseau Date: Wed Oct 11 17:15:30 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3900 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 0973f2108d854933315f54d1f3f6bbe32f830765 Author: Ludovic Rousseau Date: Tue Oct 10 17:10:41 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3899 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 6b4e55d2c35c568758d5b6a01f0b0daf60635a26 Author: Ludovic Rousseau Date: Sun Oct 8 10:18:31 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3898 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 70d62ead321092c00abed06b9b3d66554b6723a5 Author: Ludovic Rousseau Date: Sat Oct 7 15:37:05 2006 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3897 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 8d4b03266e97876905cfe1bd260fb910f12cc11a Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Wed Oct 4 20:35:03 2006 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_7'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3896 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_7/ATR_analysis | 804 ++++++++++++++++++++++ tags/rel-1_4_7/ATR_analysis.1p | 46 ++ tags/rel-1_4_7/LICENCE | 340 ++++++++++ tags/rel-1_4_7/MANIFEST | 18 + tags/rel-1_4_7/Makefile | 49 ++ tags/rel-1_4_7/README | 267 ++++++++ tags/rel-1_4_7/TODO | 6 + tags/rel-1_4_7/create_distrib.sh | 87 +++ tags/rel-1_4_7/gscriptor | 893 +++++++++++++++++++++++++ tags/rel-1_4_7/gscriptor.1p | 45 ++ tags/rel-1_4_7/gscriptor.desktop | 8 + tags/rel-1_4_7/gscriptor.gtk1.2 | 734 ++++++++++++++++++++ tags/rel-1_4_7/pcsc_scan.1 | 78 +++ tags/rel-1_4_7/pcsc_scan.c | 383 +++++++++++ tags/rel-1_4_7/scriptor | 167 +++++ tags/rel-1_4_7/scriptor.1p | 86 +++ tags/rel-1_4_7/smartcard_list.txt | 1333 +++++++++++++++++++++++++++++++++++++ tags/rel-1_4_7/test.script | 25 + 18 files changed, 5369 insertions(+) commit f5e9e87e801aba887932be7832e15e351c6ccb73 (tag: pcsc-tools-1.4.7) Author: Ludovic Rousseau Date: Wed Oct 4 20:35:02 2006 +0000 release 1.4.7 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3895 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit e3ed2b4d13ba1d5fad85988aa0fe68dbf8a3fe33 Author: Ludovic Rousseau Date: Sun Oct 1 12:13:58 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3894 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 90bada0f86e788d989b04c5b5657b1f242c919ed Author: Ludovic Rousseau Date: Sat Sep 23 18:43:00 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3893 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 57887211917157c8c70f1df80f9018fcf7b9c920 Author: Ludovic Rousseau Date: Thu Sep 21 20:09:00 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3892 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 37f2b92157e9c98fdaf0d91a0fa193c68573eff8 Author: Ludovic Rousseau Date: Sun Sep 17 14:34:06 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3891 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 89e399fc9dc515c562bcb24c58a784b182e73306 Author: Ludovic Rousseau Date: Fri Sep 8 19:37:35 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3890 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 742f676dbb8c70c19e5a880b699633af2ed64d94 Author: Ludovic Rousseau Date: Wed Aug 30 16:46:23 2006 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3889 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 925ca54e62dc3d757b8eee0c5e3bcd517a54b422 Author: Ludovic Rousseau Date: Tue Aug 22 18:44:51 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3888 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e24bf8d46e91b3bb192e85055242088e8c39ee7a Author: Ludovic Rousseau Date: Sun Aug 20 19:18:06 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3887 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit b9b678b57e36993f9b783cb3ef550c057ab6e3fa Author: Ludovic Rousseau Date: Sun Aug 20 19:16:26 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3886 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit dad1e6723575db8d7b737ed84f925ca017fd66ad Author: Ludovic Rousseau Date: Tue Aug 15 10:58:11 2006 +0000 add a couple of fflush(stdout); to force the display so that redirection works. Thanks to Johannes Becker for the bug report git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3885 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 2cfa74ed2a533ad590d3613296542f6d1e7096bc Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sat Aug 12 19:48:01 2006 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_6'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3884 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_6/ATR_analysis | 804 +++++++++++++++++++++++ tags/rel-1_4_6/ATR_analysis.1p | 46 ++ tags/rel-1_4_6/LICENCE | 340 ++++++++++ tags/rel-1_4_6/MANIFEST | 18 + tags/rel-1_4_6/Makefile | 49 ++ tags/rel-1_4_6/README | 261 ++++++++ tags/rel-1_4_6/TODO | 6 + tags/rel-1_4_6/create_distrib.sh | 87 +++ tags/rel-1_4_6/gscriptor | 893 +++++++++++++++++++++++++ tags/rel-1_4_6/gscriptor.1p | 45 ++ tags/rel-1_4_6/gscriptor.desktop | 8 + tags/rel-1_4_6/gscriptor.gtk1.2 | 734 +++++++++++++++++++++ tags/rel-1_4_6/pcsc_scan.1 | 78 +++ tags/rel-1_4_6/pcsc_scan.c | 377 +++++++++++ tags/rel-1_4_6/scriptor | 167 +++++ tags/rel-1_4_6/scriptor.1p | 86 +++ tags/rel-1_4_6/smartcard_list.txt | 1300 +++++++++++++++++++++++++++++++++++++ tags/rel-1_4_6/test.script | 25 + 18 files changed, 5324 insertions(+) commit 63b10056633f0c3ccfe9aa907d6b8bb4157ae34a (tag: pcsc-tools-1.4.6) Author: Ludovic Rousseau Date: Sat Aug 12 19:48:00 2006 +0000 release 1.4.6 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3883 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit 10e85f00d10dd6044e4870050355e0497b99845a Author: Ludovic Rousseau Date: Fri Aug 11 12:04:06 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3882 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 6becc55fddcc4049d54f899d6fddda1bfcd46016 Author: Ludovic Rousseau Date: Thu Aug 10 21:43:58 2006 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3881 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 37940d2d79f1b1f884daf45a7a73e7b6b7587676 Author: Ludovic Rousseau Date: Tue Aug 8 20:58:20 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3880 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 0322c1a9c2a257ec60ca4f57672fd73da86fe421 Author: Ludovic Rousseau Date: Wed Jun 28 17:42:10 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3879 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 956346c61b98b186c15e409a5b395fc0d58a5c08 Author: Ludovic Rousseau Date: Sun Jun 11 10:39:05 2006 +0000 convert from ISO latin-1 to UTF-8 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3878 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit 7bcd38913cc7e00145d82368d96741b0ae35793d Author: Ludovic Rousseau Date: Sun Jun 11 10:35:10 2006 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3877 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 20322829cb9f593a15c482d45ce3f7bd20430865 Author: Ludovic Rousseau Date: Tue Jun 6 19:56:02 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3876 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2cf89275215db44d0c9252bf79189b0482fe0b49 Author: Ludovic Rousseau Date: Thu Jun 1 11:07:39 2006 +0000 update URL and copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3875 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit c1894311bee790183151ad0ba43f08e96b1c25c1 Author: Ludovic Rousseau Date: Tue May 30 15:56:55 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3874 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e001842d5fd7ce1aa18b646381f0b132cef56b63 Author: Ludovic Rousseau Date: Sun May 28 20:15:42 2006 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3873 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) commit aa5a857ece548a682bb3390a9cd9342cb6743973 Author: Ludovic Rousseau Date: Sun May 28 18:47:36 2006 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3872 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) commit 3f4e5d0f3b2e597423b9b1e065da083418b40aff Author: Ludovic Rousseau Date: Fri May 26 20:37:04 2006 +0000 allow multi-lines input and wrap long output git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3871 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) commit ecf50b2f9000019cd718c80341e073aa67a757d6 Author: Ludovic Rousseau Date: Fri May 26 20:10:16 2006 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3870 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 36b1273756cea2ddfea36575596b0aa7b3104ce0 Author: Ludovic Rousseau Date: Fri May 26 14:35:05 2006 +0000 remove a debug message git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3869 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 43209668e4675147979b640a581ec7c0710d1e8a Author: Ludovic Rousseau Date: Fri May 26 14:34:14 2006 +0000 wrap the received data git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3868 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) commit f7b592f6ae8fb5af69f8b1aa00b4f10b0803cb7b Author: Ludovic Rousseau Date: Thu May 25 20:34:38 2006 +0000 lines ending with \ are to continue on the next line git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3867 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) commit a5c9e4aaf8189e90d091185037205aec7a03e39f Author: Ludovic Rousseau Date: Wed May 17 20:29:53 2006 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3866 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) commit 9ad109e37f4e1c0fc720e5e82aaa169d435181aa Author: Ludovic Rousseau Date: Fri May 12 12:38:14 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3865 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 123625155c67f1256400deea7b4eec6dd31ee382 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Mon May 8 15:11:27 2006 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_5'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3864 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_5/ATR_analysis | 804 ++++++++++++++++++++++++ tags/rel-1_4_5/ATR_analysis.1p | 46 ++ tags/rel-1_4_5/LICENCE | 340 +++++++++++ tags/rel-1_4_5/MANIFEST | 18 + tags/rel-1_4_5/Makefile | 49 ++ tags/rel-1_4_5/README | 255 ++++++++ tags/rel-1_4_5/TODO | 6 + tags/rel-1_4_5/create_distrib.sh | 87 +++ tags/rel-1_4_5/gscriptor | 867 ++++++++++++++++++++++++++ tags/rel-1_4_5/gscriptor.1p | 45 ++ tags/rel-1_4_5/gscriptor.desktop | 8 + tags/rel-1_4_5/gscriptor.gtk1.2 | 734 ++++++++++++++++++++++ tags/rel-1_4_5/pcsc_scan.1 | 78 +++ tags/rel-1_4_5/pcsc_scan.c | 377 ++++++++++++ tags/rel-1_4_5/scriptor | 150 +++++ tags/rel-1_4_5/scriptor.1p | 86 +++ tags/rel-1_4_5/smartcard_list.txt | 1213 +++++++++++++++++++++++++++++++++++++ tags/rel-1_4_5/test.script | 25 + 18 files changed, 5188 insertions(+) commit 26d447727ca2659ce41bf30449c7c79d11129d15 Author: Ludovic Rousseau Date: Mon May 8 15:11:26 2006 +0000 update pcsc_scan example with Historical bytes parsing git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3863 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) commit a1383b919b13c8bf15e5b0a5ab76010faef15481 (tag: pcsc-tools-1.4.5) Author: Ludovic Rousseau Date: Mon May 8 15:00:59 2006 +0000 release 1.4.5 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3862 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 84f164e59ca0186c9011543356f131f93a34216b Author: Ludovic Rousseau Date: Wed May 3 20:36:33 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3861 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit b991e1ab8378ee18ee0981c5a7b675e49ed97343 Author: Ludovic Rousseau Date: Wed May 3 17:47:34 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3860 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit c0bdeabbdac9b52d685aa064ef7f564484f38101 Author: Ludovic Rousseau Date: Fri Apr 21 18:47:48 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3859 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit c1fe1278114279c1ba2a970eac4047e855f48665 Author: Ludovic Rousseau Date: Wed Apr 19 18:29:30 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3858 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2d229ed2935bdc716488b5549e4e6db9c94d3aba Author: Ludovic Rousseau Date: Wed Apr 19 17:35:39 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3857 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit c285fd5d8175b0f27c9d1765638e84c47b9b289a Author: Ludovic Rousseau Date: Wed Apr 12 20:21:04 2006 +0000 add code to parse the historical bytes git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3856 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 361 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 358 insertions(+), 3 deletions(-) commit 1f7e38df0a299ed44e1cac39c4b8ac94045ce36b Author: Ludovic Rousseau Date: Fri Apr 7 13:01:50 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3855 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 13e6268e92b687c2da2726ba5b94a675a293b72c Author: Ludovic Rousseau Date: Fri Apr 7 13:00:06 2006 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3854 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 559c1be58f9508c8fba4fad9278a70823ae0adb1 Author: Ludovic Rousseau Date: Fri Apr 7 12:57:59 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3853 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit e093b170d68b3764543684a8d383bb617b747be0 Author: Ludovic Rousseau Date: Sun Apr 2 14:46:23 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3852 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 76a00457e45ebb414d42f4379dd99e28c83dce71 Author: Ludovic Rousseau Date: Fri Mar 31 11:59:10 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3851 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 016f5e7614d531da308d31da026d5295586134d9 (tag: pcsc-tools-1.4.4) Author: Ludovic Rousseau Date: Sat Mar 25 17:27:22 2006 +0000 release 1.4.4 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3850 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 0d5b576b76c043f12feff5f977544360791b30b6 Author: Ludovic Rousseau Date: Fri Mar 24 13:38:24 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3849 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4316eb16c60c45d3c1e0d75d3fb3e2e0b7a7b0e7 Author: Ludovic Rousseau Date: Thu Mar 23 12:12:25 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3848 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f6976d71636972e3f0f140eb11914068b2bf0333 Author: Ludovic Rousseau Date: Tue Mar 21 19:45:42 2006 +0000 add TCK check git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3847 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) commit 3f7dd8ee366d9935c507f5a6288baf3300ab9f80 Author: Ludovic Rousseau Date: Sun Mar 19 08:46:58 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3846 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 295871a0f4e0ea6527cf23054447ea472be240b1 Author: Ludovic Rousseau Date: Fri Mar 17 14:00:44 2006 +0000 version 1.4 and update copyright git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3845 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit de18c53dce71e4d5a93c2e3391865e5f0a726e5b Author: Ludovic Rousseau Date: Fri Mar 17 14:00:04 2006 +0000 small reformat git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3844 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 53 ++++++++++++++++++++++++++--------------------------- 1 file changed, 26 insertions(+), 27 deletions(-) commit a706040d46943d3d17c1317db108e0b6fd4ec022 Author: Ludovic Rousseau Date: Fri Mar 17 13:57:08 2006 +0000 remove unused $nb_bytes variable git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3843 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) commit 92316368c6ab30155aa94a44dd17d0ebce678af1 Author: Ludovic Rousseau Date: Wed Mar 15 20:22:17 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3842 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit adbc003a0ca9b1bcb27d383a4220027436392b2d Author: Ludovic Rousseau Date: Sat Mar 11 16:32:32 2006 +0000 ReaderConfig(): use stock icons git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3841 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) commit 8aee8e70851e668044d38c85e9e3fca8cfae5225 Author: Ludovic Rousseau Date: Sat Mar 11 16:21:47 2006 +0000 MessageBox(): add a $icon_text parameter change the calls to MessageBox() to use the new parameter git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3840 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 56 +++++++++++++++++++++++++++++++++----------------------- 1 file changed, 33 insertions(+), 23 deletions(-) commit 51c6dbffeacd9692bb270c3aaee7a7449d349b10 Author: Ludovic Rousseau Date: Sat Mar 11 14:30:28 2006 +0000 MessageBox(): use stock buttons when possible git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3839 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 161263144c67468c89d2814ef8fe83558fd387b1 Author: Ludovic Rousseau Date: Sat Mar 11 14:18:01 2006 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3838 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 1e1336ce41ed09106fd1ab360365bb6eef1ff7e5 Author: Ludovic Rousseau Date: Sat Mar 11 14:16:04 2006 +0000 ReaderConfig(): use a HButtonBox for the buttons git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3837 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 3300268a04fde54cc915d60dd80f0a950a22a8c4 Author: Ludovic Rousseau Date: Sat Mar 11 14:13:47 2006 +0000 MessageBox(): use a HButtonBox for the buttons git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3836 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit fad3828d69741fc31325ddd53e34c7854faba9a4 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Thu Mar 9 13:51:10 2006 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_3'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3835 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_3/ATR_analysis | 423 ++++++++++++++ tags/rel-1_4_3/ATR_analysis.1p | 46 ++ tags/rel-1_4_3/LICENCE | 340 +++++++++++ tags/rel-1_4_3/MANIFEST | 18 + tags/rel-1_4_3/Makefile | 49 ++ tags/rel-1_4_3/README | 228 ++++++++ tags/rel-1_4_3/TODO | 6 + tags/rel-1_4_3/create_distrib.sh | 87 +++ tags/rel-1_4_3/gscriptor | 853 +++++++++++++++++++++++++++ tags/rel-1_4_3/gscriptor.1p | 45 ++ tags/rel-1_4_3/gscriptor.desktop | 8 + tags/rel-1_4_3/gscriptor.gtk1.2 | 734 +++++++++++++++++++++++ tags/rel-1_4_3/pcsc_scan.1 | 78 +++ tags/rel-1_4_3/pcsc_scan.c | 377 ++++++++++++ tags/rel-1_4_3/scriptor | 150 +++++ tags/rel-1_4_3/scriptor.1p | 86 +++ tags/rel-1_4_3/smartcard_list.txt | 1166 +++++++++++++++++++++++++++++++++++++ tags/rel-1_4_3/test.script | 25 + 18 files changed, 4719 insertions(+) commit d4df06c81a9d85de259ebb31d4b3a8e180192958 (tag: pcsc-tools-1.4.3) Author: Ludovic Rousseau Date: Thu Mar 9 13:51:09 2006 +0000 release 1.4.3 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3834 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 2a4b014b859cb1de702ae29620c3dac15bb5bb54 Author: Ludovic Rousseau Date: Thu Mar 9 13:48:19 2006 +0000 set the pointer to NULL after a free(). The glibc do not accept a double free anymore and stops the process git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3833 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit 01461ff75ae7de0ab1309f2de6606ee340515238 Author: Ludovic Rousseau Date: Thu Mar 9 13:47:06 2006 +0000 free memory only if it was allocated. The test was reversed. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3832 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 7a2d95e7906df4282926168aed7666304a652253 Author: Ludovic Rousseau Date: Thu Mar 9 12:17:40 2006 +0000 install smartcard_list.txt in $(DESTDIR)/share/pcsc instead of $(DESTDIR)/pcsc as it is where ATR_analysis is looking for it git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3831 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit cb74dc4bfc27a9612e44aef6e2a566616d5056bb Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Mar 7 20:25:58 2006 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_2'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3830 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_2/ATR_analysis | 423 ++++++++++++++ tags/rel-1_4_2/ATR_analysis.1p | 46 ++ tags/rel-1_4_2/LICENCE | 340 +++++++++++ tags/rel-1_4_2/MANIFEST | 18 + tags/rel-1_4_2/Makefile | 49 ++ tags/rel-1_4_2/README | 222 +++++++ tags/rel-1_4_2/TODO | 6 + tags/rel-1_4_2/create_distrib.sh | 87 +++ tags/rel-1_4_2/gscriptor | 853 +++++++++++++++++++++++++++ tags/rel-1_4_2/gscriptor.1p | 45 ++ tags/rel-1_4_2/gscriptor.desktop | 8 + tags/rel-1_4_2/gscriptor.gtk1.2 | 734 +++++++++++++++++++++++ tags/rel-1_4_2/pcsc_scan.1 | 78 +++ tags/rel-1_4_2/pcsc_scan.c | 367 ++++++++++++ tags/rel-1_4_2/scriptor | 150 +++++ tags/rel-1_4_2/scriptor.1p | 86 +++ tags/rel-1_4_2/smartcard_list.txt | 1166 +++++++++++++++++++++++++++++++++++++ tags/rel-1_4_2/test.script | 25 + 18 files changed, 4703 insertions(+) commit 4b017bda71936c67e0e4198740ab9a1963f3a6e9 Author: Ludovic Rousseau Date: Tue Mar 7 20:25:57 2006 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3829 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e9d59e64b66e79674d398d4d5a2fdb4da8541d72 (tag: pcsc-tools-1.4.2) Author: Ludovic Rousseau Date: Tue Mar 7 20:20:05 2006 +0000 release 1.4.2 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3828 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 880991abc0eb2ddab72325845e1a6b8b7f296ff8 Author: Ludovic Rousseau Date: Tue Mar 7 20:18:43 2006 +0000 add gscriptor.desktop git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3827 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/MANIFEST | 1 + 1 file changed, 1 insertion(+) commit d89c8241a5472bbab0c1cff27c016c42ac44184f Author: Ludovic Rousseau Date: Tue Mar 7 20:16:01 2006 +0000 add color output support git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3826 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 52 ++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 42 insertions(+), 10 deletions(-) commit ba5bc78282b003d42bdd52a71bcfb331916f2074 Author: Ludovic Rousseau Date: Tue Mar 7 19:48:48 2006 +0000 correct two typos. Thanks to Ville Skytt? for the patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3825 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 4a6d6c973df424c89cfded80cb449722406e8c9e Author: Ludovic Rousseau Date: Tue Mar 7 19:41:15 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3824 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4c563f38580108b811d770c9a558371900c59a56 Author: Ludovic Rousseau Date: Sun Mar 5 17:48:19 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3823 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4d10608048f8ff40cfed707739a45b27f8a9c232 Author: Ludovic Rousseau Date: Sat Mar 4 19:41:22 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3822 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit eb41bb044f5c8bffd1d3935cb63c2820c79cc1d9 Author: Ludovic Rousseau Date: Fri Feb 24 10:29:36 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3821 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 58acb9afeb97c1d8048d4eae9d292af926c39574 Author: Ludovic Rousseau Date: Mon Feb 20 19:19:18 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3820 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 68779eb1436a363d43fb0700d544ce1218b6f361 Author: Ludovic Rousseau Date: Sun Feb 5 16:50:10 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3819 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d3d07d9d171ce3c65d41b68677051253cc196957 Author: Ludovic Rousseau Date: Tue Jan 31 21:58:47 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3818 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2434d3bb6ddec1238782c2ff0a1e56581e0ce360 Author: Ludovic Rousseau Date: Tue Jan 24 16:14:22 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3817 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a30eb02bd651c0af21015179c5a7ee2ab3464be6 Author: Ludovic Rousseau Date: Tue Jan 17 19:41:46 2006 +0000 french -> French git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3816 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 89e59243a1c1d5e34f3dc1393c3534753b736785 Author: Ludovic Rousseau Date: Sun Jan 15 10:33:17 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3815 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit df073744ad6bc5377aab696427f31a315c80ba9a Author: Ludovic Rousseau Date: Sun Jan 15 10:31:42 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3814 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d8423381539cd6ad4f55f06d15d2c0c5ec682eb9 Author: Ludovic Rousseau Date: Sun Jan 1 21:48:35 2006 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3813 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 9085f33f7f0457cf6b1db4bc091d8574c0c714b5 Author: Ludovic Rousseau Date: Sun Dec 18 17:17:26 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3812 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ad752c9a9ad143b2b4f34b8f714deb822962e5ed Author: Ludovic Rousseau Date: Sun Nov 27 16:44:55 2005 +0000 correct an ATR description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3811 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit 381a32730291f3ff7c79230762578852c60d0d01 Author: Ludovic Rousseau Date: Wed Nov 23 20:02:46 2005 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3810 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit 0b1433b04506b7e7d9e6c8c41a7f5858127ded2c Author: Ludovic Rousseau Date: Thu Nov 17 12:53:06 2005 +0000 4 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3809 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit 6266999f11fa1ea15dbad9e6ebe9dbdc310df3bb Author: Ludovic Rousseau Date: Sun Nov 13 13:58:20 2005 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3808 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit f68e3dfee1bae20f784eb6996f876736056d305a Author: Ludovic Rousseau Date: Thu Nov 10 17:27:12 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3807 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 7e81318f4e9328fe3a1ac38f4e64cb580457a0e6 Author: Ludovic Rousseau Date: Wed Nov 9 20:30:37 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3806 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit adefb814e87c045646856d5e4e3014dc6aa48c13 Author: Ludovic Rousseau Date: Tue Nov 1 12:13:18 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3805 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fde7baf8b6801333c9c9f252e1429a59be3acf08 Author: Ludovic Rousseau Date: Fri Oct 28 19:31:53 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3804 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit af68748dfc858a46bff58811856b9078bbf4467c Author: Ludovic Rousseau Date: Fri Oct 28 19:29:39 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3803 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit aa26befc27c3981c8126dbcfc991eedb7cf11835 Author: Ludovic Rousseau Date: Fri Oct 21 11:13:22 2005 +0000 use /usr/share/pcsc/ instead of /usr/lib/pcsc/ do be more FHS compliant Thanks to Ville Skyttä for the patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3802 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis.1p | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) commit 6c19747b2f55e1842c844a017555191e64f1431e Author: Ludovic Rousseau Date: Fri Oct 21 11:13:21 2005 +0000 use /usr/share/pcsc/ instead of /usr/lib/pcsc/ do be more FHS compliant Thanks to Ville Skytt? for the patch git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3801 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 7a99fab5e4fdbd2e7a1a69374266e49f2ca77372 Author: Ludovic Rousseau Date: Fri Oct 21 11:09:07 2005 +0000 freedesktop.org compatible menu entry for gscriptor Thanks to Ville Skyttä git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3800 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor.desktop | 8 ++++++++ 1 file changed, 8 insertions(+) commit 6ea6b1ab2b41b505581d6fc94d88efbdae608121 Author: Ludovic Rousseau Date: Thu Oct 20 22:28:02 2005 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3799 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) commit 569aebe3be3ec083f0c10aea7f2e21c9a8ee604b Author: Ludovic Rousseau Date: Tue Oct 18 16:39:40 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3798 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 6f7f3e6ad5ec0b0ffb69b7a895efe3095f89a194 Author: Ludovic Rousseau Date: Tue Oct 18 16:36:18 2005 +0000 typo: seams -> seems. Thanks to Christian Weiske git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3797 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b5eeb4155252168dd22de5f07d74bac18ab5bf2a Author: Ludovic Rousseau Date: Tue Oct 11 18:55:21 2005 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3796 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit b516977f728e414a6cc1325356d9cb107b608281 Author: Ludovic Rousseau Date: Fri Oct 7 21:56:55 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3795 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 056354aab7c609eead5aa022501632d073aceecf Author: Ludovic Rousseau Date: Tue Sep 6 19:19:13 2005 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3794 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) commit 46e92c3127e8328b3e9a1f14c8ee15e4d4a023f7 Author: Ludovic Rousseau Date: Fri Sep 2 16:36:25 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3793 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) commit 195a0f06c85e037fa6ad564fb27a1829d51a5c9c Author: Ludovic Rousseau Date: Tue Aug 30 16:06:10 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3792 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d6ec4c1984ab7a0671ff551eb93bd1fe407de7f2 Author: Ludovic Rousseau Date: Thu Aug 25 17:20:45 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3791 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 05c5ec5f4a070668176aa8832926ab84ae0125ce Author: Ludovic Rousseau Date: Thu Aug 18 18:43:14 2005 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3790 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) commit 1e4361321e373b52c88f35f66aa7c161582b9179 Author: Ludovic Rousseau Date: Tue Aug 16 17:40:17 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3789 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ec93dcb0b5d209105f73d43ab23760f47e6ee5c0 Author: Ludovic Rousseau Date: Thu Aug 4 17:12:00 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3788 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2ba5b5d9b6760634a59b661c3b395633026843d2 Author: Ludovic Rousseau Date: Wed Aug 3 17:14:51 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3787 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 14a8b1a78d6b3101b4217b97c257173da0d40486 Author: Ludovic Rousseau Date: Wed Aug 3 17:11:38 2005 +0000 5 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3786 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) commit 87bc5b5d0b3d25c24e4a8ade935970fda185b982 Author: Ludovic Rousseau Date: Tue Aug 2 20:39:10 2005 +0000 free memory only if it allocated. The test was reversed. Thanks to Vincent Fiack for the patch. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3785 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 6983e22a24641a276b35f7bbd63f88795072c3b4 Author: Ludovic Rousseau Date: Wed Jun 29 17:56:07 2005 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3784 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit f0a24459d434e5a893632e17f427524d551c7434 Author: Ludovic Rousseau Date: Sat Jun 11 18:08:24 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3783 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 47bc88954adaf9272526930f83d6c8e1b778c944 Author: Ludovic Rousseau Date: Wed Jun 1 18:11:42 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3782 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit aa4ec8e1255216eb4d05e9e522a9a076e7b816f7 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sun May 29 13:49:07 2005 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_1'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3781 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_1/ATR_analysis | 423 +++++++++++++++++ tags/rel-1_4_1/ATR_analysis.1p | 47 ++ tags/rel-1_4_1/LICENCE | 340 +++++++++++++ tags/rel-1_4_1/MANIFEST | 17 + tags/rel-1_4_1/Makefile | 49 ++ tags/rel-1_4_1/README | 216 +++++++++ tags/rel-1_4_1/TODO | 6 + tags/rel-1_4_1/create_distrib.sh | 87 ++++ tags/rel-1_4_1/gscriptor | 853 +++++++++++++++++++++++++++++++++ tags/rel-1_4_1/gscriptor.1p | 45 ++ tags/rel-1_4_1/gscriptor.gtk1.2 | 734 +++++++++++++++++++++++++++++ tags/rel-1_4_1/pcsc_scan.1 | 78 +++ tags/rel-1_4_1/pcsc_scan.c | 335 +++++++++++++ tags/rel-1_4_1/scriptor | 150 ++++++ tags/rel-1_4_1/scriptor.1p | 86 ++++ tags/rel-1_4_1/smartcard_list.txt | 969 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_4_1/test.script | 25 + 17 files changed, 4460 insertions(+) commit 588411da2540cf9d43ecead856c27efc2300434e (tag: pcsc-tools-1.4.1) Author: Ludovic Rousseau Date: Sun May 29 13:49:06 2005 +0000 release 1.4.1 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3780 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) commit 79b33a146f85c1b9b1b4ce2b14cb76b3bf70acf9 Author: Ludovic Rousseau Date: Sun May 29 13:43:59 2005 +0000 update dates git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3779 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 14bf73bfdcd239a9bbfe0bdbfaa3a5f7d46432c3 Author: Ludovic Rousseau Date: Sun May 29 13:42:12 2005 +0000 ReaderConfig: use an empty reader name if none is selected git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3778 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 491a3c21cd2f3f76a9bc2ca883ea32da4172bbc6 Author: Ludovic Rousseau Date: Sun May 29 13:32:20 2005 +0000 ConnectDefaultReader: if only one reader is found use it unconditionally git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3777 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 76aa898fddcceac8cba5673366bb6b714bfde883 Author: Ludovic Rousseau Date: Sun May 29 10:38:09 2005 +0000 add instructions to download a new version of the list git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3776 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 3ee91a91a3841f7cb5cb410fc4b30e0649ca7972 Author: Ludovic Rousseau Date: Sun May 29 10:32:08 2005 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3775 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 0175364a01000f4bf7eb0ed594ff2c23a274c091 Author: Ludovic Rousseau Date: Sun May 29 10:31:37 2005 +0000 check ~/.smartcard_list.txt for known ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3774 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) commit 8b6403ebca9c13546652457b73c39075de22089f Author: Ludovic Rousseau Date: Fri May 27 08:43:47 2005 +0000 the no argument test was wrong git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3773 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e78d00578dcc9dc5d0491c1a78976aa3e8faf13f Author: Ludovic Rousseau Date: Fri May 27 08:42:05 2005 +0000 display help if no argument is given git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3772 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit ea49bf4e4c5417f6a0e56ef25d09986609e535ce Author: Ludovic Rousseau Date: Fri May 27 08:39:21 2005 +0000 change version number and copyright date display the licence git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3771 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 4e44278055b4b18265c581cc2d9b8234daa63260 Author: Ludovic Rousseau Date: Fri May 27 08:35:42 2005 +0000 typo in a comment git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3770 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4241afeb05ba1d61996b361baf93e92f045f74bc Author: Ludovic Rousseau Date: Fri May 27 08:34:57 2005 +0000 accept 3B A7 00 40 18 80 65 A2 08 01 01 52 and not just '3B A7 00 40 18 80 65 A2 08 01 01 52' as command line argument git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3769 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit c026e94099d35a4359af316c17bea38683ca6ae7 Author: Ludovic Rousseau Date: Fri May 27 06:54:18 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3768 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 3ce58a74b4a87240ca69ffb7bbc2d2af6f8a734c Author: Ludovic Rousseau Date: Tue May 24 18:07:58 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3767 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 7c90d3a4e6670eafcb1c6bbe93d646154862c383 Author: Ludovic Rousseau Date: Thu May 19 11:18:43 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3766 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit af2d02c32f9575127337c7b1633968b8c7115615 Author: Ludovic Rousseau Date: Mon May 16 11:59:31 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3765 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d465500ed8ac7ae0697bb62157c509c9abc664a0 Author: Ludovic Rousseau Date: Tue May 10 17:08:25 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3764 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 43f6155efd4209a08aa48163f6acf8ee75dbeaae Author: Ludovic Rousseau Date: Tue May 10 16:06:55 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3763 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d44a4751a4991ab371e66f8e120413531095db24 Author: Ludovic Rousseau Date: Tue May 10 16:04:56 2005 +0000 correct a card name git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3762 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit f13a5a52cbc1a3a57bd020a09a7ab625c1dd387e Author: Ludovic Rousseau Date: Fri May 6 10:19:54 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3761 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2b74afbdd6cd7095f037265eef2bfcafd9d7ea8a Author: Ludovic Rousseau Date: Fri Apr 22 09:59:47 2005 +0000 correct Card Infocamere description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3760 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 38bb297b488563e00ecc90a9e2ce513043bd0db8 Author: Ludovic Rousseau Date: Fri Apr 22 08:03:49 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3759 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) commit 824a6b07ce5292b090b085db39e00b86136d2892 Author: Ludovic Rousseau Date: Wed Apr 20 19:40:21 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3758 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fbc174ca2bd75524b3b0e2a8831f67aa77e522f2 Author: Ludovic Rousseau Date: Tue Apr 19 19:20:08 2005 +0000 use "Compiled with PC/SC lite version" to make it clear it is NOT the installed version of pcsc-lite git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3757 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 02e983f001836fd1b56ebffbc4abb0b27389314a Author: Ludovic Rousseau Date: Wed Apr 13 18:14:17 2005 +0000 update copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3756 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 9a95a975e04488210d722f72c81185fab26ddd33 Author: Ludovic Rousseau Date: Tue Apr 5 17:53:55 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3755 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 3e195742f83031cddb575bb95be5e08e4c186331 Author: Ludovic Rousseau Date: Thu Feb 17 23:10:43 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3754 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit c2a6537158d60f223872fa533893e4e3ca191e99 Author: Ludovic Rousseau Date: Tue Feb 1 18:55:22 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3753 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f3423258043ac19c1599fbd36ded73745007f3c2 Author: Ludovic Rousseau Date: Wed Jan 26 19:19:35 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3752 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit c1e8253c63f8f5a731ed05b5d6f48f43d4d0010d Author: Ludovic Rousseau Date: Wed Jan 26 18:30:10 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3751 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 3f65af5b22aea498533263239a25064c000108f7 Author: Ludovic Rousseau Date: Wed Jan 19 18:39:12 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3750 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5f1758ddfec9354a19db1bdc80bbe91368c0f03f Author: Ludovic Rousseau Date: Thu Jan 13 17:49:36 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3749 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit c535b18b7e8b9fdaa958ed98a4bb14e6a9dbe5ad Author: Ludovic Rousseau Date: Wed Jan 12 18:15:27 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3748 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fb8d476ca75d51347aad2c2bb8dd75d4919b1e56 Author: Ludovic Rousseau Date: Tue Jan 11 18:36:03 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3747 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit cb3f11e434c2ddb53df1794526b41c33f28e100f Author: Ludovic Rousseau Date: Sun Jan 9 19:18:04 2005 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3746 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4c22c106b89c1760152ab5bf1d9aa1fe1930d7d9 Author: Ludovic Rousseau Date: Sun Jan 9 19:15:05 2005 +0000 1 new ATR and 2 description updates git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3745 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) commit caad5359e50ff797deca2739f85c4b8704510aa2 Author: Ludovic Rousseau Date: Wed Dec 15 20:14:26 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3744 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a1fddba76fc6d17c3fec7b690ccb6e2398526dd7 Author: Ludovic Rousseau Date: Sat Dec 11 15:02:20 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3743 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ed7d37caa011d8623829a9373289459a0eb2024b Author: Ludovic Rousseau Date: Fri Dec 10 14:28:17 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3742 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e03b00531d432a738eb72ddb72fcd037f1ca37d1 Author: Ludovic Rousseau Date: Fri Dec 3 15:25:12 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3741 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ab4d4702cd1ec2bdd4a5a83eb656b9a8032ee8eb Author: Ludovic Rousseau Date: Tue Nov 30 16:56:34 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3740 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 48477cfe71710193a0c3de01fc836fd1170d58c4 Author: Ludovic Rousseau Date: Sat Nov 20 19:11:43 2004 +0000 generalise an ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3739 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 5bcdf944c873356c402d699307ed22893968d7de Author: Ludovic Rousseau Date: Fri Nov 19 18:40:37 2004 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3738 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit db7202401f71f231c2cca59fd6c631ddc9c92d77 Author: Ludovic Rousseau Date: Thu Nov 18 16:36:15 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3737 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ebfaadbce6cb877c520ef3f5edf74d2c8420227d Author: Ludovic Rousseau Date: Tue Nov 9 19:51:47 2004 +0000 3 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3736 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit 6937d25a666878eaf3f14ca6e013a3554c660ff5 Author: Ludovic Rousseau Date: Thu Nov 4 16:43:53 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3735 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f94989b45b64b68a1565169746ddfacf70726889 Author: Ludovic Rousseau Date: Tue Oct 26 18:33:05 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3734 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit b3e5fc0328766a950862d915dcdf2590ea706b27 Author: Ludovic Rousseau Date: Thu Oct 21 11:12:24 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3733 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5aa456b70a01816681db94c3bbd196ec9f31e8b3 Author: Ludovic Rousseau Date: Thu Oct 21 11:03:52 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3732 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ceaac0ba9709000c0fdf67a06e6456d2330e07cb Author: Ludovic Rousseau Date: Fri Oct 15 18:05:09 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3731 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit c8a30761fb8bb66e33607b4022c1e81fe9b4fc18 Author: Ludovic Rousseau Date: Thu Sep 30 20:27:19 2004 +0000 add some documentation to the previous ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3730 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 181b03af3290868182b7a98c8f47100ba4f03ef7 Author: Ludovic Rousseau Date: Thu Sep 30 18:59:57 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3729 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 10b64c3f89eb787c65a4b410f12749bcc99573d1 Author: Ludovic Rousseau Date: Fri Sep 17 18:33:29 2004 +0000 add URL for documentating an ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3728 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit f73b5e0ec29215fb575c2b545d039217f7e82316 Author: Ludovic Rousseau Date: Wed Sep 15 18:17:41 2004 +0000 file sort git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3727 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 123 +++++++++++++++++++++++------------------------ 1 file changed, 61 insertions(+), 62 deletions(-) commit f559e9f96501278254a83083bd1226afe75efada Author: Ludovic Rousseau Date: Wed Sep 15 18:01:45 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3726 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 1e84b187d0bdd7b2e0369cd5e8ccc54591407321 Author: Ludovic Rousseau Date: Wed Sep 1 17:00:46 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3725 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d692708db47e626800853b687ceb3f960407b444 Author: Ludovic Rousseau Date: Wed Aug 25 18:15:48 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3724 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 42ec92ce379b189023aee795ce50c27406f4ea96 Author: Ludovic Rousseau Date: Tue Aug 24 18:13:38 2004 +0000 remove 1 ATR duplicate git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3723 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) commit cba87b0bc5ed62aef4fd602bc4f782ee0da0b982 Author: Ludovic Rousseau Date: Tue Aug 24 17:41:28 2004 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3722 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 21c97c8cc1ff4d1a5cbe584d0512a2a739dc82a1 Author: Ludovic Rousseau Date: Fri Aug 13 21:38:30 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3721 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 90635076200ab6d8a22e3f29cc781c504fd0e0dd Author: Ludovic Rousseau Date: Wed Aug 11 21:56:05 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3720 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5ad3bdf85a3a6f866a603004e3d7a3e7634aa9c5 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Fri Aug 6 14:45:49 2004 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_4_0'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3719 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_4_0/ATR_analysis | 424 +++++++++++++++++++ tags/rel-1_4_0/ATR_analysis.1p | 47 +++ tags/rel-1_4_0/LICENCE | 340 +++++++++++++++ tags/rel-1_4_0/MANIFEST | 17 + tags/rel-1_4_0/Makefile | 49 +++ tags/rel-1_4_0/README | 207 ++++++++++ tags/rel-1_4_0/TODO | 6 + tags/rel-1_4_0/create_distrib.sh | 87 ++++ tags/rel-1_4_0/gscriptor | 847 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_4_0/gscriptor.1p | 45 ++ tags/rel-1_4_0/gscriptor.gtk1.2 | 734 +++++++++++++++++++++++++++++++++ tags/rel-1_4_0/pcsc_scan.1 | 78 ++++ tags/rel-1_4_0/pcsc_scan.c | 335 +++++++++++++++ tags/rel-1_4_0/scriptor | 150 +++++++ tags/rel-1_4_0/scriptor.1p | 86 ++++ tags/rel-1_4_0/smartcard_list.txt | 822 ++++++++++++++++++++++++++++++++++++ tags/rel-1_4_0/test.script | 25 ++ 17 files changed, 4299 insertions(+) commit 98377d9ffb5ba8c4d6de838812cb43b713b74962 (tag: pcsc-tools-1.4.0) Author: Ludovic Rousseau Date: Fri Aug 6 14:45:48 2004 +0000 release 1.4.0 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3718 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit c61985fb500679678851f748fcdae80379fcb1d0 Author: Ludovic Rousseau Date: Fri Aug 6 14:42:55 2004 +0000 add gscriptor.gtk1.2 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3717 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/MANIFEST | 1 + 1 file changed, 1 insertion(+) commit b86641c33fb8146eb6942e88fb62a53f0e857317 Author: Ludovic Rousseau Date: Fri Aug 6 14:42:42 2004 +0000 old version using gtk 1.2 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3716 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor.gtk1.2 | 734 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 734 insertions(+) commit 23e7cbf4834b2bdf429dd76b89f6162963d64358 Author: Ludovic Rousseau Date: Fri Aug 6 14:38:55 2004 +0000 use nice icons in the menu git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3715 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 45 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 34 insertions(+), 11 deletions(-) commit 0730e707811fbc495722f5f09a993794a74ab05c Author: Ludovic Rousseau Date: Fri Aug 6 14:17:54 2004 +0000 use english typography (no space before ! and ?) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3714 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) commit b9d80a76d080272f7217e297d0a7afac831e96bb Author: Ludovic Rousseau Date: Fri Aug 6 14:15:34 2004 +0000 select the latest reader used git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3713 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) commit ffe5896b1a1d36373ba80be871ba940629aa5b33 Author: Ludovic Rousseau Date: Fri Aug 6 13:51:17 2004 +0000 update git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3712 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8d60eb93765a02986b89252907d80e336744b92b Author: Ludovic Rousseau Date: Fri Aug 6 13:51:03 2004 +0000 use C comment /* */ instead of C++ comments // git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3711 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 863c66c028cbe5fb4c219100dc9485c78fbe914a Author: Ludovic Rousseau Date: Sun Aug 1 22:05:47 2004 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3710 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit fdedca75c7e0a0f6728dacef771df5ea0d26d27d Author: Ludovic Rousseau Date: Sat Jul 31 19:24:15 2004 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3709 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) commit 43624cb4c5c1fa5bce9fbd6378c66550f79fa695 Author: Ludovic Rousseau Date: Thu Jul 29 15:23:50 2004 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3708 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 43c27b9b134bd04549d4347de906b778190b30e2 Author: Ludovic Rousseau Date: Fri Jul 23 20:06:43 2004 +0000 3 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3707 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) commit 890a985f3bb7718fb475cfd0aaff4f9afdaf872f Author: Ludovic Rousseau Date: Thu Jul 22 17:08:30 2004 +0000 move from libgtk-perl to libgtk2-perl and add many improvements: - color support - T=0 or T=1 support git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3706 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 489 ++++++++++++++++++++++++++++++++------------------------ 1 file changed, 283 insertions(+), 206 deletions(-) commit 4e88c9e575f0a517f9b4f5b024a79abf195a12c2 Author: Ludovic Rousseau Date: Mon Jul 19 15:02:51 2004 +0000 if the command does not contains spaces (00A4030000) we expand it git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3705 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 5 ++++- trunk/scriptor | 7 ++++++- 2 files changed, 10 insertions(+), 2 deletions(-) commit a5c4884006e8c8dcd4f51a906d10e7419b891b6e Author: Ludovic Rousseau Date: Mon Jul 19 14:48:58 2004 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3704 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 4a6f09500fac5b221704b66fe4f46a2fa2834ffb Author: Ludovic Rousseau Date: Sat Jul 10 14:12:39 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3703 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 06f647c7e03a257ff2bf69e6f42adad5b5124bf9 Author: Ludovic Rousseau Date: Wed Jul 7 16:57:00 2004 +0000 section is 1p git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3702 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis.1p | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 70b624c3d3e0b75423740262e11e4fc282c8b894 Author: Ludovic Rousseau Date: Wed Jul 7 16:56:26 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3701 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 6989a1251cba27e8a19060f79b22b7c62085a06c Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sun Jul 4 13:24:38 2004 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_3_4'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3700 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_3_4/ATR_analysis | 424 +++++++++++++++++++++ tags/rel-1_3_4/ATR_analysis.1p | 47 +++ tags/rel-1_3_4/LICENCE | 340 +++++++++++++++++ tags/rel-1_3_4/MANIFEST | 16 + tags/rel-1_3_4/Makefile | 49 +++ tags/rel-1_3_4/README | 202 ++++++++++ tags/rel-1_3_4/TODO | 6 + tags/rel-1_3_4/create_distrib.sh | 87 +++++ tags/rel-1_3_4/gscriptor | 731 +++++++++++++++++++++++++++++++++++ tags/rel-1_3_4/gscriptor.1p | 45 +++ tags/rel-1_3_4/pcsc_scan.1 | 78 ++++ tags/rel-1_3_4/pcsc_scan.c | 335 ++++++++++++++++ tags/rel-1_3_4/scriptor | 145 +++++++ tags/rel-1_3_4/scriptor.1p | 86 +++++ tags/rel-1_3_4/smartcard_list.txt | 783 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_3_4/test.script | 25 ++ 16 files changed, 3399 insertions(+) commit 330be853c238d51f6bffa7965290236a85a8fa2f (tag: pcsc-tools-1.3.4) Author: Ludovic Rousseau Date: Sun Jul 4 13:24:37 2004 +0000 release 1.3.4 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3699 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 71adae596cab8e9c8ebbe571b76b77cf31b65f0f Author: Ludovic Rousseau Date: Sun Jul 4 13:04:00 2004 +0000 use http://pcsclite.alioth.debian.org/ as pcsc-lite homepage git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3698 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 0c8194bb0c79d8b549759f257127e21b76bb4850 Author: Ludovic Rousseau Date: Thu Jul 1 19:57:39 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3697 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fb49c10d6a71fc81999f62f9cafce4f49841720a Author: Ludovic Rousseau Date: Tue Jun 29 18:10:17 2004 +0000 LPSTR -> LPTSTR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3696 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 5440c39bb01fb9b6a0a45624211c42d4fa5a0afa Author: Ludovic Rousseau Date: Tue Jun 29 17:58:46 2004 +0000 only send the 5 last characters of the response to Chipcard::PCSC::Card::ISO7816Error() git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3695 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 4 ++-- trunk/scriptor | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) commit 0f3559e1b6b0a0e6dbf2901ba4acfd04ca06e45f Author: Ludovic Rousseau Date: Tue Jun 15 20:15:29 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3694 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 82b5b71c807c1ddcd56c31affb884a59bf0d95a4 Author: Ludovic Rousseau Date: Sun Jun 13 21:01:23 2004 +0000 use 'pkg-config libpcsclite [--cflags|--libs]' git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3693 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit c226a96b37ef7931d41bc30a051d9383129c9c91 Author: Ludovic Rousseau Date: Sun Jun 13 20:49:36 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3692 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 7adf020f2dd7c150e47c2033179a0a21b668b090 Author: Ludovic Rousseau Date: Tue May 25 07:35:13 2004 +0000 some systems do not support the long options of install git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3691 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 98f1b160efcbc2192a7c8c9fc16036231fb010da Author: Ludovic Rousseau Date: Mon May 17 20:22:25 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3690 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4327035de2d4decc668e9f060388e8e0ab28fc12 Author: Ludovic Rousseau Date: Sun Apr 4 11:22:28 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3689 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit ddb07850536ed860109f0dc814eb8fbefbe713de (tag: pcsc-tools-1.3.3) Author: Ludovic Rousseau Date: Fri Apr 2 10:11:18 2004 +0000 release 1.3.3 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3688 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 22daf9ca1da600e3c40fedbb754792218d32205d Author: Ludovic Rousseau Date: Fri Apr 2 06:44:38 2004 +0000 use a dynamic table for readers to avoid any use of the deprecated PCSCLITE_MAX_CHANNELS constant git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3687 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 58 ++++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 47 insertions(+), 11 deletions(-) commit fde178c6f1f628a1d428eed978016fb33302824a Author: Ludovic Rousseau Date: Fri Apr 2 06:40:02 2004 +0000 add -g debug flag to CFLAGS git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3686 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 9bcb813420589005f9a22fa563ab966b3fb2c6af Author: Ludovic Rousseau Date: Tue Mar 30 16:47:25 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3685 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit bfb8350cf7734278c7410e3872abfc2d13bf1721 Author: Ludovic Rousseau Date: Wed Mar 24 18:18:10 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3684 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fe9e1f898389838e64edf48f82819da7ea4c53cf Author: Ludovic Rousseau Date: Wed Mar 24 18:14:59 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3683 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 77f40a915a69249329f74d085c45bd071fb19cba Author: Ludovic Rousseau Date: Tue Mar 2 13:37:17 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3682 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 459a221d150501a11a4a44a50020764b8733dbc4 Author: Ludovic Rousseau Date: Fri Feb 20 17:41:19 2004 +0000 2 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3681 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 9a15738b59c1497827c1b5c135de4f5296819bdf Author: Ludovic Rousseau Date: Sat Jan 17 16:56:14 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3680 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e3af88446568badd711656b482441ec5414933db Author: Ludovic Rousseau Date: Wed Jan 14 16:57:41 2004 +0000 update 1 ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3679 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 3c65fad4041999d64add4019fff3ddab7d01990f Author: Ludovic Rousseau Date: Fri Jan 9 22:36:22 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3678 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 2c9f39075824e6a4e5b5049ed50ae0150159f035 Author: Ludovic Rousseau Date: Fri Jan 9 20:15:01 2004 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3677 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 1f9620e86b55c821d4fe32d145b5771bd273bfcd Author: Ludovic Rousseau Date: Thu Jan 8 09:23:19 2004 +0000 add support of PCSC MacOS X framework git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3676 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 7 +++++-- trunk/pcsc_scan.c | 7 ++++++- 2 files changed, 11 insertions(+), 3 deletions(-) commit fefeaced5650e0c8a18a3c32ce78b33b7fcd3736 Author: Ludovic Rousseau Date: Mon Jan 5 22:32:11 2004 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3675 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a63115b8a2c9a04d84da4963f04e7469a5ec3401 Author: Ludovic Rousseau Date: Sat Dec 20 13:32:21 2003 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3674 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4286e91c4d4d0ac8e1033ff7cd19fb6d38d2046e Author: Ludovic Rousseau Date: Fri Dec 19 08:11:25 2003 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3673 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit abea8c88c44723035b7d1c978506a9f56a7d7d2d Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Wed Dec 17 19:33:15 2003 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_3_2'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3672 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_3_2/ATR_analysis | 424 ++++++++++++++++++++++ tags/rel-1_3_2/ATR_analysis.1p | 47 +++ tags/rel-1_3_2/LICENCE | 340 ++++++++++++++++++ tags/rel-1_3_2/MANIFEST | 16 + tags/rel-1_3_2/Makefile | 46 +++ tags/rel-1_3_2/README | 188 ++++++++++ tags/rel-1_3_2/TODO | 6 + tags/rel-1_3_2/create_distrib.sh | 87 +++++ tags/rel-1_3_2/gscriptor | 731 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_3_2/gscriptor.1p | 45 +++ tags/rel-1_3_2/pcsc_scan.1 | 78 ++++ tags/rel-1_3_2/pcsc_scan.c | 294 +++++++++++++++ tags/rel-1_3_2/scriptor | 145 ++++++++ tags/rel-1_3_2/scriptor.1p | 86 +++++ tags/rel-1_3_2/smartcard_list.txt | 722 +++++++++++++++++++++++++++++++++++++ tags/rel-1_3_2/test.script | 25 ++ 16 files changed, 3280 insertions(+) commit ae8e0c660f03305e94904aeea3c06b3093b1efee (tag: pcsc-tools-1.3.2) Author: Ludovic Rousseau Date: Wed Dec 17 19:33:14 2003 +0000 release 1.3.2 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3671 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit 2aac0c509837311ba5b1ba8f8090349f963a0457 Author: Ludovic Rousseau Date: Tue Dec 16 16:48:47 2003 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3670 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 0f2fc8c25f339e07787f08bfbbcc7c6c9d2a1a12 Author: Ludovic Rousseau Date: Wed Dec 10 19:40:13 2003 +0000 change "Using" in "Trying" before the real communication protocol is known. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3669 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit e0f776fd604116127c58d5b5133268129a74b11d Author: Ludovic Rousseau Date: Wed Dec 10 19:18:44 2003 +0000 print the communication protocol used. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3668 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) commit 2e11279bb94375abf658a96efde3639fea55c90d Author: Ludovic Rousseau Date: Wed Dec 10 19:09:53 2003 +0000 by default let pcscd select the correct protocol among T=0 and T=1 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3667 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit e64dcbd1442743c266d50a35a87e3fdddbb6dae0 Author: Ludovic Rousseau Date: Fri Dec 5 15:34:24 2003 +0000 one ATR removed git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3666 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) commit 9731775fbead4c063fa656492cbea448a9bbf3d7 Author: Ludovic Rousseau Date: Wed Dec 3 16:53:56 2003 +0000 9 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3665 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) commit 083d26eed9f41dbde38fa3850f7c44c6d6c287c9 Author: Ludovic Rousseau Date: Sun Nov 23 22:22:27 2003 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3664 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2bee1851999e9617db7df09d2ec14895466c5791 Author: Ludovic Rousseau Date: Thu Nov 20 07:13:37 2003 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3663 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit d2a5b818c41b3d6830f0354d490407f18cf914bf Author: Ludovic Rousseau Date: Wed Nov 19 17:01:41 2003 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3662 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit fac57bce6692cdfd3efc331ddfac33e057a75b95 Author: Ludovic Rousseau Date: Tue Nov 18 17:08:17 2003 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3661 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a5423d9aae5fb0fb65c2119ab056c225fa994dd8 Author: Ludovic Rousseau Date: Sat Nov 8 17:13:41 2003 +0000 change menu accelerator for Run so it can be used even if a text Text widget is selected git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3660 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit 5479ca5fe671e19e6945ab613ed6b6314d53ff8c Author: Ludovic Rousseau Date: Sat Nov 8 17:07:02 2003 +0000 simplify status word printing git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3659 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit e87ab20b9db5af6df70fc39536e7a4b2624fd00c Author: Ludovic Rousseau Date: Sat Nov 8 17:02:03 2003 +0000 use paned windows to resize Script and Result frames git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3658 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) commit 964d4272dbef76854c91c265079c04345d4b60a4 Author: Ludovic Rousseau Date: Sat Nov 8 16:42:23 2003 +0000 print textual status word according to ISO 7816 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3657 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 859596d467208803ed7ff96567715108cf58d0cd Author: Ludovic Rousseau Date: Fri Nov 7 17:46:59 2003 +0000 - print the ATR with 'reset' command - print textual status word according to ISO 7816 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3656 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit 572e4078d0f3c5af03f065ed089db57cad4c05ac Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Wed Oct 29 18:12:14 2003 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_3_1'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3655 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_3_1/ATR_analysis | 424 ++++++++++++++++++++++ tags/rel-1_3_1/ATR_analysis.1p | 47 +++ tags/rel-1_3_1/LICENCE | 340 ++++++++++++++++++ tags/rel-1_3_1/MANIFEST | 16 + tags/rel-1_3_1/Makefile | 46 +++ tags/rel-1_3_1/README | 178 ++++++++++ tags/rel-1_3_1/TODO | 6 + tags/rel-1_3_1/create_distrib.sh | 87 +++++ tags/rel-1_3_1/gscriptor | 731 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_3_1/gscriptor.1p | 45 +++ tags/rel-1_3_1/pcsc_scan.1 | 78 ++++ tags/rel-1_3_1/pcsc_scan.c | 294 +++++++++++++++ tags/rel-1_3_1/scriptor | 130 +++++++ tags/rel-1_3_1/scriptor.1p | 86 +++++ tags/rel-1_3_1/smartcard_list.txt | 674 +++++++++++++++++++++++++++++++++++ tags/rel-1_3_1/test.script | 25 ++ 16 files changed, 3207 insertions(+) commit b5cc301db5f491dc51bb34fa13699334ec7d7d00 (tag: pcsc-tools-1.3.1) Author: Ludovic Rousseau Date: Wed Oct 29 18:12:13 2003 +0000 release 1.3.1 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3654 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 68c48eedca12ee02d92ea126def79af4e2e6aa8c Author: Ludovic Rousseau Date: Wed Oct 22 16:51:13 2003 +0000 typo git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3653 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit d6b26d4b5d49f622b80e2ec31dc15150585bc500 Author: Ludovic Rousseau Date: Wed Oct 22 16:40:24 2003 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3652 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit f432e899a20d5f9142980a89d5b0a260a7ae0ecb Author: Ludovic Rousseau Date: Wed Oct 22 16:33:27 2003 +0000 one more ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3651 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 5e1db70f4aabfe1c9072799a63979c78bcb056f7 Author: Ludovic Rousseau Date: Wed Oct 22 16:33:16 2003 +0000 only ask to send me the ATR and card description if it is a microprocessor card. I am not (yet) interested in a list of memory cards. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3650 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 6aead2e55297f192d4264330682e36661c9e5dbb Author: Ludovic Rousseau Date: Fri Oct 17 21:28:29 2003 +0000 add -p argument to specify the ISO 7816 protocol to use (T=0 or T=1) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3649 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 50 ++++++++++++++++++++++++++++++++++++-------------- trunk/scriptor.1p | 15 +++++++++++---- 2 files changed, 47 insertions(+), 18 deletions(-) commit f5ca7e7bd7a1be0b52c93a9b6c99102c50a37bcd Author: Ludovic Rousseau Date: Wed Oct 15 16:46:40 2003 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3648 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit aa1267eb164d30d044e3b39d2051e9fa9c786f21 Author: Ludovic Rousseau Date: Tue Oct 14 07:13:50 2003 +0000 one more ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3647 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit c2db98c855f2a695dcc58e1ce1fab0fb7e672d32 Author: Ludovic Rousseau Date: Sat Oct 11 17:26:27 2003 +0000 new ATR description git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3646 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 0be46e54a3705d824204dd1c563de0975ac52445 Author: Ludovic Rousseau Date: Fri Oct 3 16:17:28 2003 +0000 two new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3645 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit a98bcc44444c52dbd221a6ee96c0923d50f06410 Author: Ludovic Rousseau Date: Wed Sep 3 15:52:29 2003 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3644 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 1b6aabfb16f259e102b3c78de37abe4cd15ea5a6 Author: Ludovic Rousseau Date: Tue Sep 2 16:40:14 2003 +0000 do not try to find the card model if it is not a microprocessor card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3643 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) commit 1c9895d998a9d40a40ad5e1b5cacf97beb1f2e82 Author: Ludovic Rousseau Date: Tue Aug 26 15:52:34 2003 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3642 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit f27ba979488a3ebe3de753a7d9aa031cf0b31c7d Author: Ludovic Rousseau Date: Tue Aug 12 16:52:57 2003 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3641 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 7659f14b0041252e788675c47006852f171afa03 Author: Ludovic Rousseau Date: Fri Aug 8 20:03:49 2003 +0000 update Acer TravelMate card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3640 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit d0e3e9c739550536cab5ad7eb0e1974dba6af691 Author: Ludovic Rousseau Date: Tue Aug 5 18:30:23 2003 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3639 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit eef581884fcd0ef4fa21c271bac65a1e5ef4534a Author: Ludovic Rousseau Date: Wed Jul 9 16:56:13 2003 +0000 3 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3638 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 61b18fa7d474dc4d4bc1217e0da8ff74170aaca3 Author: Ludovic Rousseau Date: Wed Jul 9 16:44:06 2003 +0000 1 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3637 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4182190b0d4eed9089f9efef7852019aba1c3270 Author: Ludovic Rousseau Date: Tue Jun 24 20:27:40 2003 +0000 add units (Volts, Amp?res) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3636 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 1b542f15b911ba0f5fbf43d07c0dca0f11eb6ed0 Author: Ludovic Rousseau Date: Tue Jun 24 20:26:56 2003 +0000 3 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3635 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) commit 73a3d65e9ef6e2ace1f329f3f3f909e371c8790c Author: Ludovic Rousseau Date: Wed Jun 4 19:19:49 2003 +0000 8 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3634 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) commit 2a9a21853b49e6e0d07b3f648f0e37983563fc89 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sat May 31 20:49:26 2003 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_3_0'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3633 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_3_0/ATR_analysis | 415 ++++++++++++++++++++++ tags/rel-1_3_0/ATR_analysis.1p | 47 +++ tags/rel-1_3_0/LICENCE | 340 ++++++++++++++++++ tags/rel-1_3_0/MANIFEST | 16 + tags/rel-1_3_0/Makefile | 46 +++ tags/rel-1_3_0/README | 170 +++++++++ tags/rel-1_3_0/TODO | 6 + tags/rel-1_3_0/create_distrib.sh | 87 +++++ tags/rel-1_3_0/gscriptor | 731 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_3_0/gscriptor.1p | 45 +++ tags/rel-1_3_0/pcsc_scan.1 | 78 ++++ tags/rel-1_3_0/pcsc_scan.c | 294 +++++++++++++++ tags/rel-1_3_0/scriptor | 108 ++++++ tags/rel-1_3_0/scriptor.1p | 79 ++++ tags/rel-1_3_0/smartcard_list.txt | 599 +++++++++++++++++++++++++++++++ tags/rel-1_3_0/test.script | 25 ++ 16 files changed, 3086 insertions(+) commit f8f8bb701e8f8ddee7e2aa971c3630dec59b23a7 (tag: pcsc-tools-1.3.0) Author: Ludovic Rousseau Date: Sat May 31 20:49:25 2003 +0000 release 1.3.0 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3632 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit d207bbb2f3bbd8d3e95c5929dd684eb8e76935d3 Author: Ludovic Rousseau Date: Sat May 31 20:44:09 2003 +0000 detect reader insertion/removal (USB) and adjust the reader list accordingly git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3631 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) commit b0cbac9066340b42e5b89757863ce84de171fece Author: Ludovic Rousseau Date: Sun May 25 21:29:26 2003 +0000 4 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3630 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) commit 9f0aaba3667f330dcb502bc6c31a49ab1c0c65d2 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sat May 24 22:19:42 2003 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_2_5'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3629 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_2_5/ATR_analysis | 415 ++++++++++++++++++++++ tags/rel-1_2_5/ATR_analysis.1p | 47 +++ tags/rel-1_2_5/LICENCE | 340 ++++++++++++++++++ tags/rel-1_2_5/MANIFEST | 16 + tags/rel-1_2_5/Makefile | 46 +++ tags/rel-1_2_5/README | 165 +++++++++ tags/rel-1_2_5/TODO | 6 + tags/rel-1_2_5/create_distrib.sh | 87 +++++ tags/rel-1_2_5/gscriptor | 731 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_2_5/gscriptor.1p | 45 +++ tags/rel-1_2_5/pcsc_scan.1 | 78 ++++ tags/rel-1_2_5/pcsc_scan.c | 280 +++++++++++++++ tags/rel-1_2_5/scriptor | 108 ++++++ tags/rel-1_2_5/scriptor.1p | 79 ++++ tags/rel-1_2_5/smartcard_list.txt | 587 ++++++++++++++++++++++++++++++ tags/rel-1_2_5/test.script | 25 ++ 16 files changed, 3055 insertions(+) commit 18906c6feecd4f0e39a3db118b279e26d4ea4c26 Author: Ludovic Rousseau Date: Sat May 24 22:19:41 2003 +0000 adjust copyright date git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3628 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit cd14b0290372890a0e7e510580555b6f2843665a (tag: pcsc-tools-1.2.5) Author: Ludovic Rousseau Date: Sat May 24 22:11:05 2003 +0000 release 1.2.5 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3627 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) commit f256f66d514d5bd327f46c586ed6b50f52699da6 Author: Ludovic Rousseau Date: Sat May 24 22:10:34 2003 +0000 new naming scheme Chipcard::PCSC instead of PCSC git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3626 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 141 ++++++++++++++++---------------------------------------- trunk/scriptor | 46 ++++++++---------- 2 files changed, 58 insertions(+), 129 deletions(-) commit 08cb6b116d56b5a16804e9862ef78aff8a049dbd Author: Ludovic Rousseau Date: Mon May 12 17:52:24 2003 +0000 one new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3625 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4c60f648c1ecc73a063bf2742653098ede3d7fd1 Author: Ludovic Rousseau Date: Sun May 11 17:57:21 2003 +0000 three new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3624 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) commit 58bb54caaa7bd883ef29580f4ac65bee81357c41 Author: Ludovic Rousseau Date: Thu May 8 13:43:01 2003 +0000 cleanly exit if all readers are removed git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3623 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 57 +++++++++++++------------------------------------------ 1 file changed, 13 insertions(+), 44 deletions(-) commit 5a08f22f48ee7891eeaefcd1cbb418a9568986ca Author: Ludovic Rousseau Date: Sat May 3 07:00:53 2003 +0000 2 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3622 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit f371798cb204d9cf861ebee8f491b1dd9eaf8756 Author: Ludovic Rousseau Date: Wed Apr 30 15:48:35 2003 +0000 generalisation for "Austrian Quick E-purse". Maybe wrong. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3621 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit f886b5c324788f6c13868a097f37c1ce9492562d Author: Ludovic Rousseau Date: Sat Apr 26 18:05:41 2003 +0000 two new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3620 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) commit bc41cd10da0b8b395e571c5b3a3ec1cc3db3ce20 Author: Ludovic Rousseau Date: Thu Apr 24 16:05:36 2003 +0000 5 new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3619 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) commit 22b43d9eed0e387c3d83f01ed3378022fb9bd7bf Author: Ludovic Rousseau Date: Tue Apr 8 17:08:42 2003 +0000 3 new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3618 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit a54895697a82afaf42c23f9d39d2a7170897db4d Author: Ludovic Rousseau Date: Sat Mar 29 13:46:17 2003 +0000 new card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3617 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit c738993d0a094988dabe22ecbac9a98f91654711 Author: Ludovic Rousseau Date: Sun Mar 23 18:12:32 2003 +0000 some new cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3616 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit 18aace49bee66b4ca8210d9c38d9c06bc60169bf Author: Ludovic Rousseau Date: Thu Feb 27 17:47:51 2003 +0000 some more ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3615 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) commit ef9a0d4385b30a41fcbf566c4b78013fbf8e105d Author: Ludovic Rousseau Date: Tue Feb 18 19:10:44 2003 +0000 some new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3614 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) commit ecee548ec332457ccbaeb7460479def482eaa333 Author: Ludovic Rousseau Date: Fri Feb 7 17:40:19 2003 +0000 2 new G&D cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3613 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit 8424771d56141ba1991f470a2f2ce54f83cf6a90 Author: Ludovic Rousseau Date: Sun Feb 2 14:54:07 2003 +0000 one more card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3612 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e921ef1458f89cb12b48df1e9b1212c24bcbfc43 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Jan 28 21:39:08 2003 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_2_4'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3611 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_2_4/ATR_analysis | 415 ++++++++++++++++++++ tags/rel-1_2_4/ATR_analysis.1p | 47 +++ tags/rel-1_2_4/LICENCE | 340 ++++++++++++++++ tags/rel-1_2_4/MANIFEST | 16 + tags/rel-1_2_4/Makefile | 46 +++ tags/rel-1_2_4/README | 160 ++++++++ tags/rel-1_2_4/TODO | 6 + tags/rel-1_2_4/create_distrib.sh | 87 +++++ tags/rel-1_2_4/gscriptor | 794 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_2_4/gscriptor.1p | 45 +++ tags/rel-1_2_4/pcsc_scan.1 | 78 ++++ tags/rel-1_2_4/pcsc_scan.c | 311 +++++++++++++++ tags/rel-1_2_4/scriptor | 116 ++++++ tags/rel-1_2_4/scriptor.1p | 79 ++++ tags/rel-1_2_4/smartcard_list.txt | 496 ++++++++++++++++++++++++ tags/rel-1_2_4/test.script | 25 ++ 16 files changed, 3061 insertions(+) commit c8df5f1478fa141e8cc2804bb1809236899883ab (tag: pcsc-tools-1.2.4) Author: Ludovic Rousseau Date: Tue Jan 28 21:39:07 2003 +0000 release 1.2.4 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3610 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit a429ea9b5ecd4a5c134dd27583fa87f8906d4281 Author: Ludovic Rousseau Date: Thu Jan 23 17:32:55 2003 +0000 some new cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3609 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) commit 70ca19b18a5fb242178c48de74054bc6f5e14ed4 Author: Ludovic Rousseau Date: Sat Jan 4 21:29:39 2003 +0000 add GSM-SIM Orange-UK git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3608 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit a804176768f7b75b8d550e81d1bcbca37581077c Author: Ludovic Rousseau Date: Sun Dec 8 22:53:43 2002 +0000 use PCSCBASE to set tell where the pcsc-lite includes and lib are stored git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3607 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) commit adff8db2e73c062c13fd8659589ec769832dd4a5 Author: Ludovic Rousseau Date: Wed Dec 4 21:21:16 2002 +0000 add some Schlumberger cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3606 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) commit c4a7a4bd51f2443e0de2b75af83141fbad0bad6c Author: Ludovic Rousseau Date: Fri Nov 22 12:17:33 2002 +0000 some new cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3605 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) commit 599876b1701c9dc70f6f555ad929de43d2ef2c8b Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Sat Nov 16 22:21:35 2002 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_2_3'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3604 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_2_3/ATR_analysis | 415 ++++++++++++++++++++ tags/rel-1_2_3/ATR_analysis.1p | 47 +++ tags/rel-1_2_3/LICENCE | 340 ++++++++++++++++ tags/rel-1_2_3/MANIFEST | 16 + tags/rel-1_2_3/Makefile | 45 +++ tags/rel-1_2_3/README | 156 ++++++++ tags/rel-1_2_3/TODO | 6 + tags/rel-1_2_3/create_distrib.sh | 87 +++++ tags/rel-1_2_3/gscriptor | 794 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_2_3/gscriptor.1p | 45 +++ tags/rel-1_2_3/pcsc_scan.1 | 78 ++++ tags/rel-1_2_3/pcsc_scan.c | 311 +++++++++++++++ tags/rel-1_2_3/scriptor | 116 ++++++ tags/rel-1_2_3/scriptor.1p | 79 ++++ tags/rel-1_2_3/smartcard_list.txt | 448 +++++++++++++++++++++ tags/rel-1_2_3/test.script | 25 ++ 16 files changed, 3008 insertions(+) commit d9a025fb0fb8d91b34fa34e56d0ff09730cc50b9 (tag: pcsc-tools-1.2.3) Author: Ludovic Rousseau Date: Sat Nov 16 22:21:34 2002 +0000 release 1.2.3 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3603 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit fbb3fb3aca87126ec4242a9ad0db618a398468a7 Author: Ludovic Rousseau Date: Sat Nov 16 22:18:55 2002 +0000 Add the URL of the latest smartcard_list.txt file git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3602 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit f84f8d71f543df514474e360be97e3b042f4584c Author: Ludovic Rousseau Date: Sat Nov 16 16:38:11 2002 +0000 some new ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3601 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) commit c3f014752cfc87aa46fb25a2a3d38ba191372375 Author: Ludovic Rousseau Date: Fri Nov 15 12:32:18 2002 +0000 add Siemens CardOS/M 3.0 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3600 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 4fc7989de3410cf9dc7d2fad7bed8a5b590aa805 Author: Ludovic Rousseau Date: Tue Nov 5 19:11:14 2002 +0000 some new cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3599 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 39 +++++++++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-) commit 8bd4e6d87a39386cbde288ba98a1b45cd6377974 Author: Ludovic Rousseau Date: Thu Oct 31 21:50:06 2002 +0000 some new cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3598 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) commit 673498f760928440b85ceab0444d3e2f412f0eb9 Author: Ludovic Rousseau Date: Fri Oct 25 17:27:14 2002 +0000 add some more ATRs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3597 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) commit fd935f16ec02ec79bac76b8a9cf404cf78804160 Author: Ludovic Rousseau Date: Tue Oct 22 20:27:42 2002 +0000 add eToken R2 2242 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3596 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit cc8111ae2fb3c43b7672aef4ddb2bde81896606a Author: Ludovic Rousseau Date: Wed Oct 16 16:21:31 2002 +0000 add two Oberthur cards git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3595 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) commit 660250a4a94b9183d85ec0275d1b71f5c3e12bb1 Author: Ludovic Rousseau Date: Tue Oct 15 21:36:53 2002 +0000 small typo git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3594 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 519b50d1f2ec3e4a26fd90db9cb38da6fa43f84c Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Oct 15 17:07:56 2002 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_2_2'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3593 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_2_2/ATR_analysis | 412 ++++++++++++++++++++ tags/rel-1_2_2/ATR_analysis.1p | 47 +++ tags/rel-1_2_2/LICENCE | 340 ++++++++++++++++ tags/rel-1_2_2/MANIFEST | 16 + tags/rel-1_2_2/Makefile | 45 +++ tags/rel-1_2_2/README | 151 ++++++++ tags/rel-1_2_2/TODO | 6 + tags/rel-1_2_2/create_distrib.sh | 87 +++++ tags/rel-1_2_2/gscriptor | 794 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_2_2/gscriptor.1p | 45 +++ tags/rel-1_2_2/pcsc_scan.1 | 78 ++++ tags/rel-1_2_2/pcsc_scan.c | 311 +++++++++++++++ tags/rel-1_2_2/scriptor | 116 ++++++ tags/rel-1_2_2/scriptor.1p | 79 ++++ tags/rel-1_2_2/smartcard_list.txt | 359 +++++++++++++++++ tags/rel-1_2_2/test.script | 25 ++ 16 files changed, 2911 insertions(+) commit 533a46272a232e42c1853bbb530ac532ede81d25 (tag: pcsc-tools-1.2.2) Author: Ludovic Rousseau Date: Tue Oct 15 17:07:55 2002 +0000 release 1.2.2 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3592 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) commit 91d022043eb0ecbed42912e718846caf4e04f1a2 Author: Ludovic Rousseau Date: Tue Oct 15 17:07:36 2002 +0000 remove CC=gcc declaration add /usr/local/include and /usr/local/lib paths add LDLIBS version for xBSD systems (use -lc_r instead of -lpthread) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3591 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) commit 51428bf37ef19cb6d0b8cc813f86fe523b52cf20 Author: Ludovic Rousseau Date: Tue Oct 15 17:06:29 2002 +0000 add 'make clean' before creating the archive git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3590 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/create_distrib.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) commit 137707d9f1435f57bf9dcf5334f4b9b074818737 Author: Ludovic Rousseau Date: Tue Oct 15 17:05:58 2002 +0000 add #include git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3589 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 78b0ae97a890089e151f1340e1500205639c91de Author: Ludovic Rousseau Date: Wed Oct 9 06:11:57 2002 +0000 add IBM MFC 4.1 card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3588 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 6acf6b5bf0c65b0985ad25e66e512f7c0b3eabe1 Author: Ludovic Rousseau Date: Mon Oct 7 07:16:28 2002 +0000 typo git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3587 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 27ccd1a34ef6ac4f529a04f2fdb2b39f9f86041e Author: Ludovic Rousseau Date: Fri Sep 27 06:39:54 2002 +0000 add Aladdin eToken PRO git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3586 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit d303277f57c5c0e56e3f1acae11306c9ba15397c Author: Ludovic Rousseau Date: Thu Sep 12 07:31:24 2002 +0000 add GemXpresso V3 B1P git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3585 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 0ad4f8cff3020075c682ee7f04cf99f57e5dfd79 Author: Ludovic Rousseau Date: Wed Sep 11 12:49:32 2002 +0000 add Siemens/Infineon SLE 44c80 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3584 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 2746bf3af7eafce7a95a4d861d5abd6cf3b2075c Author: Ludovic Rousseau Date: Fri Sep 6 06:37:12 2002 +0000 remove the trailing ' ' when the ATR is in compact form 3F6D00.. The ATR with a ' ' was not found in the database. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3583 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit ba53706b33317a260e1297b6e58b3b1457e22c16 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Aug 27 13:31:38 2002 +0000 This commit was manufactured by cvs2svn to create tag 'rel-1_2_1'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3582 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel-1_2_1/ATR_analysis | 411 ++++++++++++++++++++ tags/rel-1_2_1/ATR_analysis.1p | 47 +++ tags/rel-1_2_1/LICENCE | 340 ++++++++++++++++ tags/rel-1_2_1/MANIFEST | 16 + tags/rel-1_2_1/Makefile | 44 +++ tags/rel-1_2_1/README | 144 +++++++ tags/rel-1_2_1/TODO | 6 + tags/rel-1_2_1/create_distrib.sh | 79 ++++ tags/rel-1_2_1/gscriptor | 794 ++++++++++++++++++++++++++++++++++++++ tags/rel-1_2_1/gscriptor.1p | 45 +++ tags/rel-1_2_1/pcsc_scan.1 | 78 ++++ tags/rel-1_2_1/pcsc_scan.c | 307 +++++++++++++++ tags/rel-1_2_1/scriptor | 116 ++++++ tags/rel-1_2_1/scriptor.1p | 79 ++++ tags/rel-1_2_1/smartcard_list.txt | 345 +++++++++++++++++ tags/rel-1_2_1/test.script | 25 ++ 16 files changed, 2876 insertions(+) commit e2be8ec1635e9c4172bf2897d48d89a2cef6099d Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Aug 27 13:31:37 2002 +0000 This commit was manufactured by cvs2svn to create tag 'README'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3581 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/README/ATR_analysis | 411 +++++++++++++++++++++ tags/README/ATR_analysis.1p | 47 +++ tags/README/LICENCE | 340 ++++++++++++++++++ tags/README/MANIFEST | 16 + tags/README/Makefile | 44 +++ tags/README/README | 144 ++++++++ tags/README/TODO | 6 + tags/README/create_distrib.sh | 79 ++++ tags/README/gscriptor | 794 +++++++++++++++++++++++++++++++++++++++++ tags/README/gscriptor.1p | 45 +++ tags/README/pcsc_scan.1 | 78 ++++ tags/README/pcsc_scan.c | 307 ++++++++++++++++ tags/README/scriptor | 116 ++++++ tags/README/scriptor.1p | 79 ++++ tags/README/smartcard_list.txt | 345 ++++++++++++++++++ tags/README/test.script | 25 ++ 16 files changed, 2876 insertions(+) commit 1b5bb204c3c07e4a6c0eeacbf6120368f912f358 Author: Ludovic Rousseau Date: Tue Aug 27 13:31:36 2002 +0000 document the use of smartcard_list.txt git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3580 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis.1p | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) commit 940530de4e667115307e5a9462e062d0315cc298 Author: Ludovic Rousseau Date: Tue Aug 27 13:31:15 2002 +0000 add the URL to get the latest version git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3579 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit e024dd83c6ccd72ba72ad8a351bdb8f451a43411 (tag: pcsc-tools-1.2.1) Author: Ludovic Rousseau Date: Tue Aug 27 06:58:25 2002 +0000 release 1.2.1 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3578 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) commit 6d161b4fd3a89dd2e97d68c4de7e5d4169c6eda9 Author: Ludovic Rousseau Date: Tue Aug 27 06:56:49 2002 +0000 more new ATR git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3577 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) commit 7adc786a137a98c5c791d4e5d129ca6a2038c469 Author: Ludovic Rousseau Date: Mon Aug 26 08:16:03 2002 +0000 add cards ATR received by mail and from http://cuba.xs4all.nl/~hip/cards.html git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3576 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/smartcard_list.txt | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) commit 3da6f16df329922faaf02ce10b480ead8fea51ef Author: Ludovic Rousseau Date: Mon Aug 26 08:15:35 2002 +0000 use case insensitive matchs git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3575 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 5f5953da4954669414f7ab2cf741a4b36feeadc6 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Wed Aug 21 08:20:33 2002 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1_2_0'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3574 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1_2_0/ATR_analysis | 411 ++++++++++++++++++++ tags/rel_1_2_0/ATR_analysis.1p | 27 ++ tags/rel_1_2_0/LICENCE | 340 ++++++++++++++++ tags/rel_1_2_0/MANIFEST | 16 + tags/rel_1_2_0/Makefile | 44 +++ tags/rel_1_2_0/README | 140 +++++++ tags/rel_1_2_0/TODO | 6 + tags/rel_1_2_0/create_distrib.sh | 79 ++++ tags/rel_1_2_0/gscriptor | 794 ++++++++++++++++++++++++++++++++++++++ tags/rel_1_2_0/gscriptor.1p | 45 +++ tags/rel_1_2_0/pcsc_scan.1 | 78 ++++ tags/rel_1_2_0/pcsc_scan.c | 307 +++++++++++++++ tags/rel_1_2_0/scriptor | 116 ++++++ tags/rel_1_2_0/scriptor.1p | 79 ++++ tags/rel_1_2_0/smartcard_list.txt | 296 ++++++++++++++ tags/rel_1_2_0/test.script | 25 ++ 16 files changed, 2803 insertions(+) commit aa8df0bcad0c7e5f7da6f812404f42e70997c343 Author: Ludovic Rousseau Date: Wed Aug 21 08:20:32 2002 +0000 add smartcard_list.txt git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3573 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/MANIFEST | 1 + 1 file changed, 1 insertion(+) commit 7ee614769d08e80317c39b1f2c3c91157d735a6e (tag: pcsc-tools-1.2.0) Author: Ludovic Rousseau Date: Wed Aug 21 08:19:24 2002 +0000 release 1.2.0 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3572 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 51 ++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 38 insertions(+), 13 deletions(-) commit df75e7c7a3e3e1b2092c1879825f618a75e19c70 Author: Ludovic Rousseau Date: Wed Aug 21 07:58:19 2002 +0000 add support for smartcard_list.txt database git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3571 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 97 ++++++++++++++-- trunk/Makefile | 20 +++- trunk/smartcard_list.txt | 296 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 397 insertions(+), 16 deletions(-) commit bd2eed6011a2f3056cbe1cc068788d8908ec81e7 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Mon Jun 17 07:21:25 2002 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1_1_0'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3570 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1_1_0/ATR_analysis | 334 ++++++++++++++++ tags/rel_1_1_0/ATR_analysis.1p | 27 ++ tags/rel_1_1_0/LICENCE | 340 +++++++++++++++++ tags/rel_1_1_0/MANIFEST | 15 + tags/rel_1_1_0/Makefile | 36 ++ tags/rel_1_1_0/README | 115 ++++++ tags/rel_1_1_0/TODO | 6 + tags/rel_1_1_0/create_distrib.sh | 79 ++++ tags/rel_1_1_0/gscriptor | 794 +++++++++++++++++++++++++++++++++++++++ tags/rel_1_1_0/gscriptor.1p | 45 +++ tags/rel_1_1_0/pcsc_scan.1 | 78 ++++ tags/rel_1_1_0/pcsc_scan.c | 307 +++++++++++++++ tags/rel_1_1_0/scriptor | 116 ++++++ tags/rel_1_1_0/scriptor.1p | 79 ++++ tags/rel_1_1_0/test.script | 25 ++ 15 files changed, 2396 insertions(+) commit 3381cb13afa7fd570e1e51b0a4d9b7e9413a63ad Author: Ludovic Rousseau Date: Mon Jun 17 07:21:24 2002 +0000 add Christophe LEVANTIS in AUTHORS list git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3569 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) commit 9d297d24a2e0783894b3d257fed1b829536db700 Author: Ludovic Rousseau Date: Mon Jun 17 07:21:01 2002 +0000 also install scripts git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3568 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit d93d3475dc7f0cde240a081deb2d904878c520ae (tag: pcsc-tools-1.1.0) Author: Ludovic Rousseau Date: Fri Jun 14 08:05:01 2002 +0000 release 1.1.0 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3567 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 41 +++++++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 18 deletions(-) commit 1d56459a26705b94198a9a6a7e714856348ba81f Author: Ludovic Rousseau Date: Fri Jun 14 07:55:37 2002 +0000 add support for ATR_analysis git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3566 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.1 | 42 +++++++++++------ trunk/pcsc_scan.c | 138 ++++++++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 142 insertions(+), 38 deletions(-) commit fd105eb99f1acb28e7cdea2c4547fe831acdfde8 Author: Ludovic Rousseau Date: Fri Jun 14 07:55:04 2002 +0000 add ATR_analysis ATR_analysis.1p files git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3565 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/ATR_analysis | 334 ++++++++++++++++++++++++++++++++++++++++++++++++++ trunk/ATR_analysis.1p | 27 ++++ trunk/MANIFEST | 8 +- trunk/Makefile | 7 +- 4 files changed, 369 insertions(+), 7 deletions(-) commit fb9a13f1200e75313b92b8a4e0127cfd4d52af8c Author: Lionel Victor Date: Wed May 15 11:37:49 2002 +0000 Readers states are initialized with SCARD_STATE_UNAWARE to make sure the first query will update the state to something we know. Modified the event loop to monitor all readers at once. SCARD_STATE_CHANGED is used to detect which reader triggered the event. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3564 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 111 ++++++++++++++++++++++++++++++------------------------ 1 file changed, 62 insertions(+), 49 deletions(-) commit 18f9c17bc0f524272eeb57e38f8ab9b7a58f2ad8 Author: Lionel Victor Date: Tue May 14 16:03:44 2002 +0000 Added comments and modified the event listener to listen to all readers at once... This demonstrates the possibility to use a list of readers to listen events to... git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3563 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 110 +++++++++++++++++++++++++++++------------------------- 1 file changed, 59 insertions(+), 51 deletions(-) commit 1ceb51609edbd712848fad85fd97cd4aa3166df7 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Wed Mar 6 08:21:19 2002 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1-0-4'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3562 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1-0-4/LICENCE | 340 +++++++++++++++++ tags/rel_1-0-4/MANIFEST | 13 + tags/rel_1-0-4/Makefile | 35 ++ tags/rel_1-0-4/README | 106 ++++++ tags/rel_1-0-4/TODO | 6 + tags/rel_1-0-4/create_distrib.sh | 79 ++++ tags/rel_1-0-4/gscriptor | 794 +++++++++++++++++++++++++++++++++++++++ tags/rel_1-0-4/gscriptor.1p | 45 +++ tags/rel_1-0-4/pcsc_scan.1 | 64 ++++ tags/rel_1-0-4/pcsc_scan.c | 196 ++++++++++ tags/rel_1-0-4/scriptor | 116 ++++++ tags/rel_1-0-4/scriptor.1p | 79 ++++ tags/rel_1-0-4/test.script | 25 ++ 13 files changed, 1898 insertions(+) commit 300317798a2a7adb03b4e5b1ac909a52b3f1e472 (tag: pcsc-tools-1.0.4) Author: Ludovic Rousseau Date: Wed Mar 6 08:21:18 2002 +0000 release 1.0.4 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3561 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 59 insertions(+), 3 deletions(-) commit a94abe1fdf4872d7dba604c154dcbec4358e33cc Author: Ludovic Rousseau Date: Tue Mar 5 16:33:40 2002 +0000 release 1.0.4 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3560 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 79939bca547031df67a467e8f0b678feaa399aee Author: Ludovic Rousseau Date: Tue Mar 5 16:32:48 2002 +0000 case insensitive on "reset" command git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3559 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 62107e496118f0744cbd124c43abd24511733266 Author: Ludovic Rousseau Date: Tue Mar 5 14:54:05 2002 +0000 case insensitive on "exit" and "reset" commands git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3558 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 8039e15e53428b23f2127a7ddcb76b6c4b541fd3 Author: Ludovic Rousseau Date: Tue Nov 27 07:25:35 2001 +0000 updade the release date in README git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3557 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 894f0a01d78d5ceb40946cb6a621a9a173e9f45f Author: Ludovic Rousseau Date: Tue Nov 27 07:24:23 2001 +0000 debug pcsc_scan to get ALL the events: done git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3556 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/TODO | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit ed3ba31eb12155c40a351da38c6403991b862891 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Thu Nov 8 08:54:52 2001 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1-0-3'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3555 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1-0-3/LICENCE | 340 +++++++++++++++++ tags/rel_1-0-3/MANIFEST | 13 + tags/rel_1-0-3/Makefile | 35 ++ tags/rel_1-0-3/README | 50 +++ tags/rel_1-0-3/TODO | 7 + tags/rel_1-0-3/create_distrib.sh | 79 ++++ tags/rel_1-0-3/gscriptor | 791 +++++++++++++++++++++++++++++++++++++++ tags/rel_1-0-3/gscriptor.1p | 45 +++ tags/rel_1-0-3/pcsc_scan.1 | 64 ++++ tags/rel_1-0-3/pcsc_scan.c | 196 ++++++++++ tags/rel_1-0-3/scriptor | 113 ++++++ tags/rel_1-0-3/scriptor.1p | 79 ++++ tags/rel_1-0-3/test.script | 25 ++ 13 files changed, 1837 insertions(+) commit bf6c810bf5623581ed4fe07c181e283cd87093a3 Author: Ludovic Rousseau Date: Thu Nov 8 08:54:51 2001 +0000 changed .1 in .1p for Perl script manpages git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3554 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/MANIFEST | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4b00ee41a953cfc9ad5f8c8b18dccbf61ec02139 (tag: pcsc-tools-1.0.3) Author: Ludovic Rousseau Date: Thu Nov 8 08:54:02 2001 +0000 release 1.0.3 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3553 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 51ce0f8b58f3a5f13a9988a3198a00c02938c778 Author: Ludovic Rousseau Date: Thu Nov 8 08:46:49 2001 +0000 change PCSC to PC/SC git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3552 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 93263a9d425b97c7dbd5059989d8d163b5fcefbe Author: Ludovic Rousseau Date: Thu Nov 8 08:44:10 2001 +0000 remove compressed manpages in clean rule git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3551 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 43e2dbde825d6a717c5ccf852a94e53c6c30e5d7 Author: Ludovic Rousseau Date: Thu Nov 8 08:43:29 2001 +0000 changed tabs into spaces removed the .pl extension of the Perl scripts include a new screen copy of pcsc_scan output git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3550 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 65 +++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 38 insertions(+), 27 deletions(-) commit 945c1a94b6dc6cd196a389711efd6c2d30bf4f36 Author: Ludovic Rousseau Date: Thu Nov 8 08:34:04 2001 +0000 set the wait time to 0 to get all the events git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3549 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 83 ++++++++++++++++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 38 deletions(-) commit 7c23b641ba4170497820a4b8e828576baf531911 Author: Ludovic Rousseau Date: Thu Nov 8 07:46:00 2001 +0000 add automatic rules to compress man pages changed install rule to use install(1) instead of cp(1) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3548 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) commit 18cf86a8090854eef8ada611d726d4bb060b58a5 Author: Ludovic Rousseau Date: Mon Oct 22 11:53:01 2001 +0000 install: also copy scriptor and gscriptor git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3547 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 45c415dcf835acf0ab5dff2f7daeb003389e0174 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Mon Oct 22 11:47:51 2001 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1-0-2'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3546 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1-0-2/LICENCE | 340 +++++++++++++++++ tags/rel_1-0-2/MANIFEST | 13 + tags/rel_1-0-2/Makefile | 20 + tags/rel_1-0-2/README | 39 ++ tags/rel_1-0-2/TODO | 7 + tags/rel_1-0-2/create_distrib.sh | 79 ++++ tags/rel_1-0-2/gscriptor | 791 +++++++++++++++++++++++++++++++++++++++ tags/rel_1-0-2/gscriptor.1p | 45 +++ tags/rel_1-0-2/pcsc_scan.1 | 64 ++++ tags/rel_1-0-2/pcsc_scan.c | 186 +++++++++ tags/rel_1-0-2/scriptor | 113 ++++++ tags/rel_1-0-2/scriptor.1p | 79 ++++ tags/rel_1-0-2/test.script | 25 ++ 13 files changed, 1801 insertions(+) commit a9a92ec7f7c6e5aca0caf697c0c694855a198aa0 (tag: pcsc-tools-1.0.2) Author: Ludovic Rousseau Date: Mon Oct 22 11:47:50 2001 +0000 Release 1.0.2 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3545 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 5fe9becb6676015db37eebb4e28027adc29b9041 Author: Ludovic Rousseau Date: Mon Oct 22 09:07:21 2001 +0000 get the version number from the directory name git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3544 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 244e424f2fcf7fa303e47899349d73a0ba0f34ed Author: Ludovic Rousseau Date: Mon Oct 22 09:00:40 2001 +0000 Added manpages git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3543 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/MANIFEST | 7 +++-- trunk/gscriptor.1p | 45 +++++++++++++++++++++++++++++++ trunk/pcsc_scan.1 | 64 +++++++++++++++++++++++++++++++++++++++++++ trunk/scriptor.1p | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 193 insertions(+), 2 deletions(-) commit c7ad4c946f7aa1785ec7ff5ea1f68338afef20b3 Author: Ludovic Rousseau Date: Mon Oct 22 08:59:12 2001 +0000 manpages OK git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3542 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/TODO | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit f44afd30b2c33dcb7a723648143357ca7faee610 Author: Ludovic Rousseau Date: Mon Oct 22 08:57:12 2001 +0000 Added GPL licence git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3541 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/LICENCE | 340 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 340 insertions(+) commit da1171ad750efa1bb09882943365af1ae3cb03ea Author: Ludovic Rousseau Date: Mon Oct 22 08:56:32 2001 +0000 commands to read a GSM SIM card instead of a silly ID badge git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3540 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/test.script | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) commit 7540d2ae745c64b142e6138a95f7b91e3a54c258 Author: Ludovic Rousseau Date: Mon Oct 22 08:54:55 2001 +0000 go to the next reader _after_ printing information for the current oone git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3539 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) commit ea5ec4b7b8a694432e549e7d4d765978c91cefb6 (tag: pcsc-tools-1.0.1) Author: Ludovic Rousseau Date: Thu Oct 18 07:34:14 2001 +0000 Release 1.0.1 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3538 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 743c77fcaa472d54fa1a2ab32d73b1bcd919e8f0 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Thu Oct 18 07:22:52 2001 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1-0-1'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3537 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1-0-1/MANIFEST | 10 + tags/rel_1-0-1/Makefile | 20 + tags/rel_1-0-1/README | 37 ++ tags/rel_1-0-1/TODO | 8 + tags/rel_1-0-1/create_distrib.sh | 79 ++++ tags/rel_1-0-1/gscriptor | 791 +++++++++++++++++++++++++++++++++++++++ tags/rel_1-0-1/pcsc_scan.c | 182 +++++++++ tags/rel_1-0-1/scriptor | 113 ++++++ tags/rel_1-0-1/test.script | 13 + 9 files changed, 1253 insertions(+) commit 4d12625c8a1e32090012ac27578fa696553934f2 Author: Ludovic Rousseau Date: Thu Oct 18 07:22:51 2001 +0000 updated with the version of pcsc-perl git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3536 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/create_distrib.sh | 36 ++++++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) commit 06d85441bdb7560095bb2b76c895a9db9877dd73 Author: Ludovic Rousseau Date: Thu Oct 18 07:22:29 2001 +0000 list of files in the archive git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3535 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/MANIFEST | 10 ++++++++++ 1 file changed, 10 insertions(+) commit d4dc0c252c32073c6758429222de9fadd32d7416 Author: Ludovic Rousseau Date: Wed Oct 17 09:22:11 2001 +0000 Added checks: directory name format, directory existance git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3534 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/create_distrib.sh | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) commit d23227d5772803d8e6534f71837a09b7f19a866a Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Oct 16 09:44:17 2001 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1-0-0'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3533 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1-0-0/Makefile | 20 + tags/rel_1-0-0/README | 37 ++ tags/rel_1-0-0/TODO | 8 + tags/rel_1-0-0/create_distrib.sh | 33 ++ tags/rel_1-0-0/gscriptor | 791 +++++++++++++++++++++++++++++++++++++++ tags/rel_1-0-0/pcsc_scan.c | 182 +++++++++ tags/rel_1-0-0/scriptor | 113 ++++++ tags/rel_1-0-0/test.script | 13 + 8 files changed, 1197 insertions(+) commit 462181b231b68cea76ae0cbe2ef9d9080b1a6bd7 Author: Ludovic Rousseau Date: Tue Oct 16 09:44:16 2001 +0000 Added authors names and emails git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3532 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 34bb6b0d7f3102e3ed0efcc85537ce6f2ebc0662 Author: Ludovic Rousseau Date: Tue Oct 16 09:43:59 2001 +0000 todo list git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3531 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/TODO | 8 ++++++++ 1 file changed, 8 insertions(+) commit c05812fab5c638f880ec9c0c0002be35b80491fd Author: Ludovic Rousseau Date: Tue Oct 16 07:52:17 2001 +0000 short readme file git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3530 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/README | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) commit 10c0c1a508ea82082eea713cc11dd5039fe56f19 Author: Ludovic Rousseau Date: Tue Oct 16 07:37:42 2001 +0000 changed PCSCCard to PCSC::Card git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3529 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit 1f861ac40513e101cc03f0aa464937f2a2b31c43 Author: Ludovic Rousseau Date: Tue Oct 16 07:33:22 2001 +0000 script to export a clean archive git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3528 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/create_distrib.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) commit 6d3a53bd16de027a8609188f118aed76943e0627 Author: Ludovic Rousseau Date: Tue Oct 16 07:31:51 2001 +0000 commented number of allocated readers (wrong info?) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3527 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/pcsc_scan.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 17d93d8fc7eed51647f2dd9b63feb58122fd63fa Author: Ludovic Rousseau Date: Tue Oct 16 07:31:35 2001 +0000 added version number git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3526 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) commit 4b69a7767aa2a7509fe480fd1bbec4d654fc5e6a Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Oct 16 07:24:08 2001 +0000 This commit was manufactured by cvs2svn to create tag 'start'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3525 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/start/Makefile | 19 ++++++ tags/start/pcsc_scan.c | 179 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 198 insertions(+) commit 1af0ca7bd40558c202437280e6e6727387b741ed Author: Ludovic Rousseau Date: Tue Oct 16 07:24:07 2001 +0000 Created directory structure git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3524 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/Makefile | 19 ++++++ trunk/pcsc_scan.c | 179 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 198 insertions(+) commit 7e202fe208a96a21576292d19242bd62a9f3fc49 Author: Lionel Victor Date: Mon Oct 1 08:16:40 2001 +0000 modified default buttons behaviour (mostly cosmetic) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3523 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit d585437f201b695ec0fceb313fb05817d8871875 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Tue Sep 25 09:05:45 2001 +0000 This commit was manufactured by cvs2svn to create tag 'rel_1-0-7'. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3522 0ce88b0d-b2fd-0310-8134-9614164e65ea tags/rel_1-0-7/gscriptor | 787 +++++++++++++++++++++++++++++++++++++++++++++ tags/rel_1-0-7/scriptor | 109 +++++++ tags/rel_1-0-7/test.script | 13 + 3 files changed, 909 insertions(+) commit 8cf288c28e59b527ac200ff390f262ab3983e981 Author: Ludovic Rousseau Date: Tue Sep 25 09:05:44 2001 +0000 Disconnect the actual card when the reader is changed git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3521 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 18ef45fc9531a4bcc9a780398f2c31a1633434cf Author: Ludovic Rousseau Date: Tue Sep 25 08:56:46 2001 +0000 improved the Help dialog box git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3520 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) commit 3e57b228c8dc5c6647cbcc4889f6121a16e28951 Author: Ludovic Rousseau Date: Tue Sep 25 08:54:10 2001 +0000 correctly assign the tip to the wrap line button git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3519 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 5383c38d18f992a726908f3eedaa84b36c509c95 Author: Ludovic Rousseau Date: Fri Sep 21 15:03:22 2001 +0000 removed () from $txtScript->get_length git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3518 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) commit 815802c9440efaf91595fc6b20f968f7f0fc45f2 Author: Ludovic Rousseau Date: Fri Sep 21 15:02:08 2001 +0000 added accelerator for Quit added $pos argument to insert_text() git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3517 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) commit a9eee4837791925a6918084ce9ad61213e805600 Author: Ludovic Rousseau Date: Fri Sep 21 13:56:22 2001 +0000 added 'homogeneous' argument to Gtk::Table::new() git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3516 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit ed1241a7ceb4e3f1255a0ae305fd4be719fb1ced Author: Ludovic Rousseau Date: Fri Sep 21 13:55:31 2001 +0000 syntax "defined @ButtonDescr" is not correct with Perl 5.6 git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3515 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 8f7da1eb26aa4990a813b5518612b254f9979824 Author: Ludovic Rousseau Date: Tue Sep 11 13:28:13 2001 +0000 configure default buttons in examples/gscriptor.pl git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3514 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) commit 65d5b84348bed27003859fe7cb550b68c39907f6 Author: Lionel Victor Date: Wed Sep 5 14:47:08 2001 +0000 Removed the ATR entry from the Reader Configuration dialog git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3513 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) commit c0e5e163d299df0896ac4b859bfe2fc1e4e6e783 Author: Lionel Victor Date: Wed Sep 5 08:39:42 2001 +0000 Cleared warning messages while running with perl -w... git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3512 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) commit e7f72140205d7af49059a8fca68b685adcee6c6f Author: Ludovic Rousseau Date: Wed Sep 5 07:35:59 2001 +0000 Added CVS Log field Added documentation for -h argument git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3511 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) commit d3d05fe11b0650c3423692bbb21c359309a327b1 Author: Ludovic Rousseau Date: Wed Sep 5 07:28:34 2001 +0000 Added GPL licence in the source code Added CVS Id field git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3510 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 29 +++++++++++++++++++++++++++-- trunk/scriptor | 19 +++++++++++++++++++ 2 files changed, 46 insertions(+), 2 deletions(-) commit 05c30e6738c884cb81b5365ad1a91209ef0a0830 Author: Lionel Victor Date: Tue Sep 4 15:17:55 2001 +0000 Updated gscriptor to use asci_to_array(). a reset keyword has also been added to the scripting 'language' so that it calls Reconnect() git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3509 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 31 +++++++++++++++++++++---------- trunk/test.script | 2 ++ 2 files changed, 23 insertions(+), 10 deletions(-) commit cc099422c9ac2c2f8682e2dce04e4b8a11625a9b Author: Lionel Victor Date: Tue Sep 4 14:50:33 2001 +0000 added a new keyword : 'reset' to reset the card... (how surprising!) git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3508 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/scriptor | 11 +++++++++++ 1 file changed, 11 insertions(+) commit 8614390309b9c57195a7cfbc8e0f6c695201d795 Author: Lionel Victor Date: Tue Sep 4 12:31:47 2001 +0000 More cosmetic changes git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3507 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 44 +++++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 19 deletions(-) commit 831fb17230c69dccafd679757a94088516c46164 Author: Lionel Victor Date: Tue Sep 4 08:11:15 2001 +0000 Applied a patch from somebody who apparently wants to stay anonymous. This patch includes mostly cosmetic changes and extra documentation about array_to_ascii() and ascii_to_array(). Thanks to this contributor for his help and time git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3506 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 71 ++++++++++++++++++++++++++++++++++++++++++++++++------- trunk/scriptor | 42 +++++++++++++++----------------- trunk/test.script | 3 ++- 3 files changed, 83 insertions(+), 33 deletions(-) commit 1fccec5fa08ff6d759c02a0f71d26230ce6752b8 Author: Lionel Victor Date: Mon Sep 3 12:49:02 2001 +0000 Added mostly cosmetic improvements to offer the user to connect when he/she tries to run a script without any active conX to the smartcard. I also identified a bug which should be verified/corrected. Its cause may lie into PCSC-lite so investigating the wrapper alone is not enough git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3505 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 73 +++++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 53 insertions(+), 20 deletions(-) commit 5eafff9c90d6873628845e4380a1c48c61683f8d Author: Lionel Victor Date: Mon Jul 2 12:08:08 2001 +0000 Initial checkin git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3504 0ce88b0d-b2fd-0310-8134-9614164e65ea trunk/gscriptor | 604 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ trunk/scriptor | 75 +++++++ trunk/test.script | 10 + 3 files changed, 689 insertions(+) commit 837ed6e77825d5b3cecdc9b84d73b1971daa3b89 Author: (no author) <(no author)@0ce88b0d-b2fd-0310-8134-9614164e65ea> Date: Mon Jul 2 12:08:08 2001 +0000 Standard project directories initialized by cvs2svn. git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3503 0ce88b0d-b2fd-0310-8134-9614164e65ea commit fe379dac7d7b1a7367ed75d1e913a623fbd0f7f4 Author: Ludovic Rousseau Date: Sun May 10 15:06:17 2009 +0000 new directory git-svn-id: svn://anonscm.debian.org/svn/pcsclite/trunk/pcsc-tools@3502 0ce88b0d-b2fd-0310-8134-9614164e65ea pcsc-tools-1.4.25/scriptor0000755000175000017500000001133312617677335016004 0ustar rousseaurousseau#!/usr/bin/env perl # scriptor.pl: text interface to send APDU commands to a smart card # Copyright (C) 2001 Lionel Victor # 2002-2008 Ludovic Rousseau # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA use Getopt::Std; use Chipcard::PCSC; use Chipcard::PCSC::Card; use strict; use warnings; my %options; my $hContext = new Chipcard::PCSC(); my $hCard; my @out_buffer; my $in_buffer; my $echo; die ("Could not create Chipcard::PCSC object: $Chipcard::PCSC::errno\n") unless defined $hContext; getopt ("r:p:" , \%options); if ($options{h}) { print "Usage: $0 [-h] [-r reader] [-p protocol] [file]\n"; print " -h: this help\n"; print " -r reader: specify to use the PCSC smart card reader named reader\n"; print " By defaults the first one found is used so you\n"; print " don't have to specify anything if you just have\n"; print " one reader\n"; print " -p protocol: protocol to use among T=0 and T=1.\n"; print " Default is to let pcsc-lite choose the protocol\n"; print " file: file containing APDUs\n"; exit (0); } # protocol option if ($options{p}) { if ($options{p} =~ m/T=0/) { print STDERR "Trying T=0 protocol\n"; $options{p} = $Chipcard::PCSC::SCARD_PROTOCOL_T0; } else { if ($options{p} =~ m/T=1/) { print STDERR "Trying T=1 protocol\n"; $options{p} = $Chipcard::PCSC::SCARD_PROTOCOL_T1; } else { die "unknown protocol: $options{p}\n"; } } } else { $options{p} = $Chipcard::PCSC::SCARD_PROTOCOL_T0 | $Chipcard::PCSC::SCARD_PROTOCOL_T1; } # reader option if ($options{r}) { print STDERR "Using given card reader: $options{r}\n"; } else { my @readers_list = $hContext->ListReaders (); die ("Can't get readers list\n") unless defined $readers_list[0]; print STDERR "No reader given: using $readers_list[0]\n"; $options{r} = $readers_list[0]; } $hCard = new Chipcard::PCSC::Card ($hContext, $options{r}, $Chipcard::PCSC::SCARD_SHARE_SHARED, $options{p}); die ("Can't allocate Chipcard::PCSC::Card object: $Chipcard::PCSC::errno\n") unless defined $hCard; if ($hCard->{dwProtocol} == $Chipcard::PCSC::SCARD_PROTOCOL_T0) { print "Using T=0 protocol\n"; } else { if ($hCard->{dwProtocol} == $Chipcard::PCSC::SCARD_PROTOCOL_T1) { print "Using T=1 protocol\n"; } else { print "Using an unknown protocol (not T=0 or T=1)\n"; } } # file option if ($ARGV[0]) { open (IN_FILEHANDLE, "<$ARGV[0]") or die ("Can't open $ARGV[0]: $!\n"); print STDERR "Using given file: $ARGV[0]\n"; $echo=1; } else { *IN_FILEHANDLE = *STDIN; print STDERR "Reading commands from STDIN\n"; $echo=0; } *OUT_FILEHANDLE = *STDOUT; my $cmd; my $match = ".. " x 16; while () { my $tmp_value; my ($SendData, $RecvData, $sw); print if ($echo); last if /exit/i; next if /^\s*$/; next if /^#/; if (/reset/i) { print OUT_FILEHANDLE "> RESET\n"; if (defined $hCard->Reconnect ($Chipcard::PCSC::SCARD_SHARE_SHARED, $options{p}, $Chipcard::PCSC::SCARD_RESET_CARD)) { my @s = $hCard->Status(); print OUT_FILEHANDLE "< OK: "; print map { sprintf ("%02X ", $_) } @{$s[3]}; print OUT_FILEHANDLE "\n"; } else { print OUT_FILEHANDLE "< KO: $Chipcard::PCSC::errno\n"; } next; } chomp; # if the command does not contains spaces (00A4030000) we expand it s/(..)/$1 /g if (! m/ /); # continue if line ends in \ if (m/\\$/) { chop; # remove the \ s/ *$/ /; # replace any spaces by ONE space $cmd .= $_; next; # read next line } $cmd .= $_; # convert in an array (internal format) $SendData = Chipcard::PCSC::ascii_to_array($cmd); print OUT_FILEHANDLE "> $cmd\n"; $RecvData = $hCard->Transmit($SendData); die ("Can't get info: $Chipcard::PCSC::errno\n") unless defined $RecvData; my $res = Chipcard::PCSC::array_to_ascii($RecvData); $sw = Chipcard::PCSC::Card::ISO7816Error(substr($res, -5)); $res =~ s/($match)/$1\n/g; print OUT_FILEHANDLE "< $res : $sw\n"; # empty the command $cmd = ""; } close (IN_FILEHANDLE); $hCard->Disconnect($Chipcard::PCSC::SCARD_LEAVE_CARD); $hCard = undef; $hContext = undef; # End of File pcsc-tools-1.4.25/ATR_analysis0000755000175000017500000004706012617677627016502 0ustar rousseaurousseau#!/usr/bin/env perl # ATR_analysis # Copyright (C) 2000-2012 Ludovic Rousseau, Christophe Levantis # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # For more information about the ATR see ISO 7816-3 1997, pages 12 and up # # TS initial character # T0 format character, Y1 | K # interfaces characters # TA(1) global, codes FI and DI # TB(1) global, codes II and PI # TC(1) global, codes N # TD(1) codes Y(2) and T # TA(2) global, codes specific mode # TB(2) global, codes PI2 # TC(2) specific # TD(2) codes Y(3) and T # TA(3) TA(i), TB(i), TC(i) (i>2) # - specific after T!=15 # - global after T=15 # TD(i) codes Y(i+1) and T # T1 historical bytes # max 15 characters # TK # TCK check character use strict; use warnings; use Getopt::Std; use Chipcard::PCSC::Card; use File::stat; # default value for XDG_CACHE_HOME # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html my $Cache = "$ENV{HOME}/.cache"; # check if XDG_CACHE_HOME env variable is set if (exists($ENV{XDG_CACHE_HOME})) { $Cache = "$ENV{XDG_CACHE_HOME}"; } # file containing the smart card models my @SMARTCARD_LIST = ( "$Cache/smartcard_list.txt", "$ENV{HOME}/.smartcard_list.txt", "/usr/local/pcsc/smartcard_list.txt", "/usr/share/pcsc/smartcard_list.txt", "/usr/local/share/pcsc/smartcard_list.txt"); our ($opt_v, $opt_h); my ($atr, %TS, @Fi, @FMax, @Di, @XI, @UI, $T, $value, $counter, $line, $TCK); my ($Y1, $K, @object, $mpcard, $hb_category); # tables %TS = (0x3B, "Direct Convention", 0x3F, "Inverse Convention"); @Fi = (372, 372, 558, 744, 1116, 1488, 1860, "RFU", "RFU", 512, 768, 1024, 1536, 2048, "RFU", "RFU"); @FMax = (4, 5, 6, 8, 12, 16, 20, "RFU", "RFU", 5, 7.5, 10, 15, 20, "RFU", "RFU"); @Di = ("RFU", 1, 2, 4, 8, 16, 32, 64, 12, 20, "RFU", "RFU", "RFU", "RFU", "RFU", "RFU"); @XI = ("not supported", "state L", "state H", "no preference"); @UI = ("A only (5V)", "B only (3V)", "A and B", "RFU"); my $COLOR_START="\033[35m"; # magenta my $COLOR_BLUE="\033[34m"; # blue my $COLOR_END="\033[0m\n"; # default (black) # prorotypes sub analyse_TA(); sub analyse_TB(); sub analyse_TC(); sub analyse_TD(); sub find_card($@); sub analyse_histrorical_bytes(); sub compact_tlv(); sub lcs($); sub sm($); sub dc($); sub cc($); sub cs($); # globals init $T = 0; $counter = 1; getopts("vh"); if ($opt_v) { print "Version: 1.7, (c) 2002-2012, Ludovic Rousseau \n"; print "This software is free software (GNU General Public License)\n"; exit; } # 1_ 1 argument then input = ATR else smart card if ($opt_h or ($#ARGV == -1)) { print "Usage: $0 [-v] [-h] ATR_string\n"; print " Ex: $0 3B A7 00 40 18 80 65 A2 08 01 01 52\n"; exit; } # 1_ get the ATR $atr = join " ", @ARGV; $atr =~ s/://g; $atr = uc($atr); if (substr ($atr, 2, 1) ne " ") { # "3BA7004018" -> "3B A7 00 40 18" $atr =~ s/(..)/$1 /g; $atr =~ s/ *$//; } print "ATR: $atr\n"; # 2_ Split in bytes of the lines @object = split(/\s/, $atr); # 3_ Analysis # Analysis of TS: $value = hex(shift(@object)); if (defined $TS{$value}) { printf "+ TS = %02X --> %s\n", $value, $TS{$value}; $mpcard = 1; } else { printf "+ TS = %02X --> UNDEFINED\n", $value; # this is NOT a microprocessor card $mpcard = 0; } exit if ($#object < 0); # Analysis of T0: $value = hex(shift(@object)); $Y1 = $value >> 4; $K = $value % 16; printf "+ T0 = %02X, Y(1): %04b, K: %d (historical bytes)\n", $value, $Y1, $K; exit if ($#object < 0); analyse_TA() if ($Y1 & 0x1); exit if ($#object < 0); analyse_TB() if ($Y1 & 0x2); exit if ($#object < 0); analyse_TC() if ($Y1 & 0x4); exit if ($#object < 0); analyse_TD() if ($Y1 & 0x8); # TCK is present? if ($#object == $K) { # expected TCK my $tck_e = hex($object[-1]); $#object--; # calculated TCK my $tck_c = 0; my @object = split(/\s/, $atr); shift @object; # do not use TS map { $tck_c ^= hex $_ } @object; $TCK = sprintf "%02X ", $tck_e; if ($tck_c == 0) { $TCK .= "(correct checksum)"; } else { $TCK .= sprintf "WRONG CHECKSUM, expected %02X", $tck_e ^ $tck_c; } } # the rest are historical bytes print "+ Historical bytes: @object\n"; if ($#object+1 < $K) { print " ERROR! ATR is truncated: " . ($K - $#object -1) . " byte(s) is/are missing\n"; } if ($#object+1 > $K) { my $extra = -($K - $#object -1); print " ERROR! ATR is too long: " . $extra . " extra byte(s). Truncating.\n"; splice @object, $K; } analyse_histrorical_bytes(); print "+ TCK = $TCK\n" if (defined $TCK); if (! $mpcard) { print "Your card is not a microprocessor card. It seems to be memory card.\n"; exit; } # update the ATR list sub update_smartcard_list($$) { # file to update my $file = shift; # URL of the latest list my $url = shift; # Has the $file file been modified in the last 10 hours? my $old = 0; my $stat_obj = stat $file; if (! $stat_obj) { # no file, so force update $old = 1; } elsif ($stat_obj->mtime < time() - 10*60*60) { # file is too old, update $old = 1; } # old file if ($old) { print "Updating $file using $url\n"; if ($^O =~ "darwin") { system("curl $url --output $file"); } else { system("wget $url --output-document=$file ; touch $file"); } # did an update return 1; } # no change return 0; } # find the corresponding card type my $found = find_card($atr, @SMARTCARD_LIST); if ($found == 2) { # not ATR file found mkdir $Cache; # continue with the ATR list update $found = 1; } if ($found == 1) { # ATR not found my $file = $SMARTCARD_LIST[0]; my $url = "http://ludovic.rousseau.free.fr/softwares/pcsc-tools/smartcard_list.txt"; $found = 0; # update the ATR list if (update_smartcard_list($file, $url)) { # try again with an updated list $found = find_card($atr, $file); } # still not found? if (! $found) { print "Your card is not present in the database.\n"; print "Please submit your unknown card at:\n"; $atr =~ s/ //g; print "http://smartcard-atr.appspot.com/parse?ATR=$atr\n"; } } ######## Sub functions # _____ _ # |_ _|/ \ # | | / _ \ # | |/ ___ \ # |_/_/ \_\ # sub analyse_TA() { $value = hex(shift(@object)); printf (" TA($counter) = %02X --> ", $value); print $COLOR_START; # TA1 Analysis if ($counter == 1) { my $F = $value >> 4; my $D = $value % 16; printf "Fi=%s, Di=%s", $Fi[$F], $Di[$D]; if ($Di[$D] ne "RFU" and $Fi[$F] ne "RFU") { $value = $Fi[$F]/$Di[$D]; printf ", %g cycles/ETU\n", $value; printf " %d bits/s at 4 MHz", 4000000/$value; printf ", fMax for Fi = %d MHz => %d bits/s", $FMax[$F], $FMax[$F]*1000000/$value; } } # TA2 Analysis - TA2 is the specific mode byte if ($counter == 2) { my $F = $value >> 4; my $D = $value % 16; printf ("Protocol to be used in spec mode: T=%s", $D); if ($F & 0x8) { print " - Unable to change"; } else { print " - Capable to change"; } if ($F & 0x1) { print " - implicity defined"; } else { print " - defined by interface bytes"; } } # TA3 Analysis if ($counter >= 3) { if ($T == 1) { printf ("IFSC: %s", $value); } else { #### T <> 1 my $F = $value >> 6; my $D = $value % 64; my $Class = "(3G) "; $Class = $Class."A 5V " if ($D & 0x1); $Class = $Class."B 3V " if ($D & 0x2); $Class = $Class."C 1.8V " if ($D & 0x4); $Class = $Class."D RFU " if ($D & 0x8); $Class = $Class."E RFU" if ($D & 0x10); printf ("Clock stop: %s - Class accepted by the card: %s", $XI[$F],$Class); } } print $COLOR_END; } # analyse_TA() # _____ ____ # |_ _| __ ) # | | | _ \ # | | | |_) | # |_| |____/ # sub analyse_TB() { $value = hex(shift(@object)); printf (" TB($counter) = %02X --> ", $value); my $I = $value >> 5; my $PI = $value % 32; print $COLOR_START; if ($counter == 1) { if ($PI == 0) { print "VPP is not electrically connected"; } else { print "Programming Param P: $PI Volts, I: $I milliamperes"; } } if ($counter == 2) { print "Programming param PI2 (PI1 should be ignored): "; if (($value>49)||($value<251)) { print "$value (dV)"; } else { print "$value is RFU"; } } if ($counter >= 3) { if ($T == 1) { my $BWI = $value >> 4; my $CWI = $value % 16; printf ("Block Waiting Integer: %s - Character Waiting Integer: %s", $BWI, $CWI); } } print $COLOR_END; } # analyse_TB() # _____ ____ # |_ _/ ___| # | || | # | || |___ # |_| \____| # sub analyse_TC() { $value = hex(shift(@object)); printf (" TC($counter) = %02X --> ", $value); print $COLOR_START; if ($counter == 1) { print "Extra guard time: $value"; print " (special value)" if ($value == 255); } if ($counter == 2) { printf ("Work waiting time: 960 x %d x (Fi/F)", $value); } if ($counter >= 3) { if ($T == 1) { printf ("Error detection code: "); if ($value == 1) { print "CRC"; } elsif ($value == 0) { print "LRC"; } else { print "RFU"; } } } print $COLOR_END; } # analyse_TC() # _____ ____ # |_ _| _ \ # | | | | | | # | | | |_| | # |_| |____/ # sub analyse_TD() { my $str = ''; $value = hex(shift(@object)); my $Y = $value >> 4; $T = $value % 16; if ($T == 15) { $str = " - Global interface bytes following"; } printf (" TD($counter) = %02X --> Y(i+1) = %04b,$COLOR_START Protocol T = $T$str $COLOR_END", $value, $Y); $counter++; print "-----\n"; exit if ($#object < 0); analyse_TA() if ($Y & 0x1); exit if ($#object < 0); analyse_TB() if ($Y & 0x2); exit if ($#object < 0); analyse_TC() if ($Y & 0x4); exit if ($#object < 0); analyse_TD() if ($Y & 0x8); } # analyse_TD() # _____ _ _ _ #| ___(_)_ __ __| | ___ __ _ _ __ __| | #| |_ | | '_ \ / _` | / __/ _` | '__/ _` | #| _| | | | | | (_| | | (_| (_| | | | (_| | #|_| |_|_| |_|\__,_| \___\__,_|_| \__,_| # sub find_card($@) { my $atr = shift; my @files = @_; my ($line, $found, $f, $file); foreach (@files) { if (-e "$_") { $file = $_; last; } } # no valid file found return 2 if (!defined $file); $found = 0; print "\nPossibly identified card (using $file):\n"; open FILE, "< $file" or die "Can't open $file: $!\n"; while ($line = ) { next if ($line =~ m/^#/); # comment next if ($line =~ m/^$/); # empty line next if ($line =~ m/^\t/); # description chomp $line; if ($atr =~ m/^$line$/i) { # print the card ATR if a regular expression was used print "$atr\n" if (uc $line ne uc $atr); print "$line\n"; # print the matching ATR $found = 1; # print until a line do not start by a tabulation while (($line = ) =~ m/^\t/) { chomp $line; # print the card description print $COLOR_BLUE . $line . $COLOR_END; } } } close FILE; if ((! $found) && ($atr =~ m/^[3B|3F]/)) { print "\tNONE\n\n"; return 1; } return 0; } # find_card($) sub analyse_histrorical_bytes() { $hb_category = shift @object; # return if we have NO historical bytes return unless $hb_category; print " Category indicator byte: $hb_category"; for ($hb_category) { /00/ && do { print " (compact TLV data object)\n"; if (scalar @object < 3) { print " Error in the ATR: expecting 3 bytes and got " . scalar @object ."\n"; last; } # get the 3 last bytes my @status = splice @object, -3, 3; compact_tlv() while (@object); my $lcs = shift @status; my $sw1 = shift @status; my $sw2 = shift @status; print " Mandatory status indicator (3 last bytes)\n"; print " LCS (life card cycle): $lcs (" . lcs($lcs) . ")\n"; print " SW: $sw1$sw2 (" . Chipcard::PCSC::Card::ISO7816Error("$sw1 $sw2") . ")\n"; last; }; /80/ && do { print " (compact TLV data object)\n"; compact_tlv() while (@object); last; }; /10/ && do { print " (next byte is the DIR data reference)\n"; my $data_ref = shift @object; print " DIR data reference: $data_ref\n"; last; }; /81|82|83|84|85|86|87|88|89|8A|8B|8C|8D|8E|8F/ && do { print " (Reserved for futur use)\n"; last; }; print " (proprietary format)\n"; } } # analyse_histrorical_bytes() sub compact_tlv() { my $tlv = shift @object; # the TLV _may_ be present return unless $tlv; my ($tag, $len); $tlv =~ /(.)(.)/; $tag = $1; $len = $2; print " Tag: $tag, len: $len"; for ($tag) { /1/ && do { print " (country code, ISO 3166-1)\n"; print " Country code: " . (join ' ', splice @object, 0, hex $len) . "\n"; last; }; /2/ && do { print " (issuer identification number, ISO 7812-1)\n"; print " Issuer identification number: " . (join ' ', splice @object, 0, hex $len) . "\n"; last; }; /3/ && do { my $cs = shift @object; print " (card service data byte)\n"; if (! defined $cs) { print " Error in the ATR: expecting 1 byte and got 0\n"; last; } print " Card service data byte: $cs\n"; cs($cs); last; }; /4/ && do { print " (initial access data)\n"; print " Initial access data: " . (join ' ', splice @object, 0, hex $len) . "\n"; last; }; /5/ && do { print " (card issuer's data)\n"; print " Card issuer data: " . (join ' ', splice @object, 0, hex $len) . "\n"; last; }; /6/ && do { print " (pre-issuing data)\n"; print " Data: " . join(' ', splice @object, 0, hex $len) . "\n"; last; }; /7/ && do { print " (card capabilities)\n"; for ($len) { /1/ && do { my $sm = shift @object; print " Selection methods: $sm\n"; sm($sm); last; }; /2/ && do { my $sm = shift @object; my $dc = shift @object; print " Selection methods: $sm\n"; sm($sm); print " Data coding byte: $dc\n"; dc($dc); last; }; /3/ && do { my $sm = shift @object; my $dc = shift @object; my $cc = shift @object; print " Selection methods: $sm\n"; sm($sm); print " Data coding byte: $dc\n"; dc($dc); print " Command chaining, length fields and logical channels: $cc\n"; cc($cc); last; }; print " wrong ATR\n"; } last; }; /8/ && do { print " (status indicator)\n"; for ($len) { /1/ && do { my $lcs = shift @object; print " LCS (life card cycle): $lcs\n"; last; }; /2/ && do { my $sw1 = shift @object; my $sw2 = shift @object; print " SW: $sw1$sw2\n"; last; }; /3/ && do { my $lcs = shift @object; my $sw1 = shift @object; my $sw2 = shift @object; print " LCS (life card cycle): $lcs (" . lcs($lcs) . ")\n"; print " SW: $sw1$sw2 (" . Chipcard::PCSC::Card::ISO7816Error("$sw1 $sw2") . ")\n"; last; }; } last; }; /F/ && do { print " (application identifier)\n"; print " Application identifier: " . (join ' ', splice @object, 0, hex $len) . "\n"; last; }; print " (unknown)\n"; print " Value: " . (join ' ', splice @object, 0, hex $len) . "\n" if ($len > 0); } } # compact_tlv() # see table 13 -- Life cycle status byte, page 21 of ISO 7816-4 sub lcs($) { my $lcs = shift; return "Proprietary" if (hex $lcs > 15); # get the LSB nibble $lcs = substr $lcs, -1, 1; for ($lcs) { /0/ && do { return "No information given"; last; }; /1/ && do { return "Creation state"; last; }; /3/ && do { return "Initialisation state"; last; }; /[4|6]/ && do { return "Operational state (deactivated)"; last; }; /[5|7]/ && do { return "Operational state (activated)"; last; }; /C|D|E|F]/ && do { return "Termination state"; last; }; return "unknown"; } } # lcs() # see table 86 -- First software function table (selection methods), # page 60 of ISO 7816-4 sub sm($) { # convert in a list of 0 or 1 my @sm = split //, unpack ("B32", pack ("N", hex shift)); # remove the 24 first bits splice @sm, 0, 24; print " - DF selection by full DF name\n" if shift @sm; print " - DF selection by partial DF name\n" if shift @sm; print " - DF selection by path\n" if shift @sm; print " - DF selection by file identifier\n" if shift @sm; print " - Implicit DF selection\n" if shift @sm; print " - Short EF identifier supported\n" if shift @sm; print " - Record number supported\n" if shift @sm; print " - Record identifier supported\n" if shift @sm; } # sm # see table 87 -- Second software function table (data coding byte), # page 60 of ISO 7816-4 sub dc($) { # convert in a list of 0 or 1 my @dc = split //, unpack ("B32", pack ("N", hex shift)); # remove the 24 first bits splice @dc, 0, 24; print " - EF of TLV structure supported\n" if shift @dc; print " - Behaviour of write functions: "; my $v = shift(@dc)*2 + shift(@dc); for ($v) { /0/ && do { print "one-time write\n"; last; }; /1/ && do { print "proprietary\n"; last; }; /2/ && do { print "write OR\n"; last; }; /3/ && do { print "write AND\n"; last; }; } print " - Value 'FF' for the first byte of BER-TLV tag fields: "; print "in" unless shift @dc; print "valid\n"; print " - Data unit in quartets: "; $v = shift(@dc)*8 + shift(@dc)*4 + shift(@dc)*2 + shift(@dc); print 2**$v . "\n"; } # dc # see table 88 -- Third software function table (command chaining, # length fields and logical channels), page 61 of ISO 7816-4 sub cc($) { # convert in a list of 0 or 1 my @cc = split //, unpack ("B32", pack ("N", hex shift)); # remove the 24 first bits splice @cc, 0, 24; print " - Command chaining\n" if shift @cc; print " - Extended Lc and Le fields\n" if shift @cc; print " - RFU (should not happen)\n" if shift @cc; print " - Logical channel number assignment: "; my $v = shift(@cc)*2 + shift(@cc); for ($v) { /0/ && do { print "No logical channel\n"; last; }; /1/ && do { print "by the interface device\n"; last; }; /2/ && do { print "by the card\n"; last; }; /3/ && do { print "by the interface device and card\n"; last; }; } $v = shift(@cc)*4 + shift(@cc)*2 + shift(@cc) +1; print " - Maximum number of logical channels: $v\n"; } # cc # see table 85 -- Card service data byte, page 59 of ISO 7816-4 sub cs($) { # convert in a list of 0 or 1 my @cs = split //, unpack ("B32", pack ("N", hex shift)); # remove the 24 first bits splice @cs, 0, 24; print " - Application selection: by full DF name\n" if shift @cs; print " - Application selection: by partial DF name\n" if shift @cs; print " - BER-TLV data objects available in EF.DIR\n" if shift @cs; print " - BER-TLV data objects available in EF.ATR\n" if shift @cs; my $v = shift(@cs)*4 + shift(@cs)*2 + shift(@cs); print " - EF.DIR and EF.ATR access services: "; for ($v) { /4/ && do { print "by READ BINARY command\n"; last; }; /0/ && do { print "by GET RECORD(s) command\n"; last; }; /2/ && do { print "by GET DATA command\n"; last; }; print "reverved for future use\n"; } if (shift @cs) { printf " - Card without MF\n"; } else { printf " - Card with MF\n"; } } # cs pcsc-tools-1.4.25/scriptor.1p0000644000175000017500000000416712512013305016276 0ustar rousseaurousseau.\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH SCRIPTOR 1p "octobre 17, 2003" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME scriptor \- Perl script to send commands to a smart card .SH SYNOPSIS .B scriptor .RI [ -h ] .RI [ -r\ reader ] .RI [ -p\ protocol ] .RI [ file ] .SH DESCRIPTION This manual page documents briefly the .B scriptor command. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBscriptor\fP is a program that sends commands to a smart card using a batch file or stdin. .SH OPTIONS A description of options is included below. .TP .B \-h Show summary of options. .TP .B \-r reader Use the indicated reader. By default the first PC/SC reader is used. .TP .B \-p protocol Use the indicated protocol. Accepted values are T=0 and T=1. By default T=0 is used. .TP .B file Use the file instead of stdin to read commands (APDUs) The commands are of the form: CLA INS P1 P2 Lc [data] [le] reset # comment Example: # reset the card reset # Select MF 3F00 A0 A4 00 00 02 3F 00 # Get Reponse # 17 is the value of second SW from the previous command A0 C0 00 00 17 # Select DF Telecom (7F10) A0 A4 00 00 02 7F 10 # Get Response A0 C0 00 00 17 # Select EF_ADN (6F3A) (Abbreviated Dialing Numbers) A0 A4 00 00 02 6F 3A # Get Reponse A0 C0 00 00 0F .SH SEE ALSO .BR pcscd (8), gscriptor (1) .br .SH AUTHOR This manual page was written by Ludovic Rousseau , for the Debian GNU/Linux system (but may be used by others). pcsc-tools-1.4.25/Makefile0000644000175000017500000000221412617701773015641 0ustar rousseaurousseau# PC/SC Lite libraries and headers. PCSC_CFLAGS ?= $(shell pkg-config libpcsclite --cflags) PCSC_LDLIBS ?= $(shell pkg-config libpcsclite --libs) # by default install in /usr/local DESTDIR ?= /usr/local VERSION := $(shell pwd | sed s/.*tools-//) CFLAGS := $(CFLAGS) -DVERSION=\"$(VERSION)\" $(PCSC_CFLAGS) LDLIBS := $(PCSC_LDLIBS) # On xBSD systems use #LDLIBS = -lc_r $(PCSC_LDLIBS) # on MacOSX #CFLAGS = -Wall -O2 -DVERSION=\"$(VERSION)\" #LDLIBS = -framework PCSC BIN = pcsc_scan BIN_SCRIPT = ATR_analysis gscriptor scriptor MAN = pcsc_scan.1.gz gscriptor.1p.gz scriptor.1p.gz ATR_analysis.1p.gz all: $(BIN) $(MAN) pcsc_scan: pcsc_scan.o install: all install -d $(DESTDIR)/bin/ install $(BIN) $(DESTDIR)/bin/ install $(BIN_SCRIPT) $(DESTDIR)/bin/ install -d $(DESTDIR)/share/pcsc install -m 644 smartcard_list.txt $(DESTDIR)/share/pcsc install -d $(DESTDIR)/share/man/man1/ install -m 644 $(MAN) $(DESTDIR)/share/man/man1/ clean: rm -f pcsc_scan.o $(BIN) $(MAN) %.1.gz: %.1 gzip --best $^ --to-stdout > $@ %.1p.gz: %.1p gzip --best $^ --to-stdout > $@ .PHONY: clean all install Changelog Changelog: git log --stat --decorate=short > $@ pcsc-tools-1.4.25/gscriptor0000755000175000017500000006550712617677256016171 0ustar rousseaurousseau#!/usr/bin/env perl # gscriptor: GTK interface to send APDU commands to a smart card # Copyright (C) 2001 Lionel Victor, Ludovic Rousseau # 2002-2010 Ludovic Rousseau # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # gscriptor uses libgtk-perl, please make sure it is correctly installed # on your system use strict; use warnings; use Glib qw(TRUE FALSE); use Gtk2 '-init'; use Gtk2::SimpleMenu; use File::Basename; use Carp; use Chipcard::PCSC; use Chipcard::PCSC::Card; #set_locale Gtk; my $strAppName = "gscriptor"; my $strConfigFileName = "$ENV{HOME}/.$strAppName"; my @ResultStruct; my %hConfig; my ($vscScript, $vscResult); # PCSC related variables my $hContext = Chipcard::PCSC->new; die ("Can't create the Chipcard::PCSC object: $Chipcard::PCSC::errno\n") unless (defined $hContext); my $hCard = Chipcard::PCSC::Card->new ($hContext); die ("Can't create the Chipcard::PCSC::Card object: $Chipcard::PCSC::errno\n") unless (defined $hContext); ############################### create widgets ############################### my $wndMain = Gtk2::Window->new("toplevel"); my $txtScript = Gtk2::TextView->new; my $txtResult = Gtk2::TextView->new; my $rdbASCII = Gtk2::RadioButton->new_with_label(undef, "ASCII"); my $rdbHex = Gtk2::RadioButton->new_with_label($rdbASCII->get_group(), "Hex"); my $chkWrap = Gtk2::CheckButton->new("Wrap lines"); my $btnRun = Gtk2::Button->new("Run"); my $txtStatus = Gtk2::Entry->new; ############################## arrange widgets ############################### # arrange_widgets () is used to arrange widgets in the windows. # It allows to conveniently allocate temporary variables for the various # containers and the scrollbars, as well as the menu. # This function also sets some basic properties of the different # widgets used... configuration is therefore grouped in a single place. sub arrange_widgets () { $wndMain->set_title ("$strAppName"); $txtScript->set_editable(TRUE); $txtResult->set_editable(FALSE); $txtStatus->set_sensitive(FALSE); $chkWrap->set_active(TRUE); $rdbHex->set_active(TRUE); # create and bind toolbars $vscScript = Gtk2::ScrolledWindow->new; $vscScript->set_size_request(200, 200); $vscScript->set_policy ('automatic', 'automatic'); $vscScript->add($txtScript); $vscResult = Gtk2::ScrolledWindow->new; $vscResult->set_size_request(200, 200); $vscResult->set_policy ('automatic', 'automatic'); $vscResult->add($txtResult); # create text tags my $buffer = $txtResult->get_buffer; $buffer->create_tag("red", foreground => "red"); $buffer->create_tag("blue", foreground => "blue"); $buffer->create_tag("monospace", family => "monospace"); # create and set tooltips my $tipScript = Gtk2::Tooltips->new; my $tipResult = Gtk2::Tooltips->new; my $tipASCII = Gtk2::Tooltips->new; my $tipHex = Gtk2::Tooltips->new; my $tipRun = Gtk2::Tooltips->new; my $tipWrap = Gtk2::Tooltips->new; $tipScript->set_tip ($txtScript, "list of APDUs to exchange"); $tipResult->set_tip ($txtResult, "result window"); $tipASCII->set_tip ($rdbASCII, "show ASCII data"); $tipHex->set_tip ($rdbHex, "show hexadecimal data"); $tipRun->set_tip ($btnRun, "run the current script"); $tipWrap->set_tip ($chkWrap, "wrap long lines"); # create and set the menu with the accel_table my $menu_model = [ _File => { item_type => '', children => [ New => { callback => \&NewScriptFile, accelerator => 'N', item_type => '', extra_data => 'gtk-new' }, Open => { callback => \&LoadScriptFile, accelerator => 'O', item_type => '', extra_data => 'gtk-open' }, Save => { callback => \&SaveScriptFile, accelerator => 'S', item_type => '', extra_data => 'gtk-save' }, 'Save As' => { callback => \&SaveAsScriptFile, accelerator => 'S', item_type => '', extra_data => 'gtk-save-as' }, Separator => { item_type => '' }, Quit => { callback => \&CloseAppWindow, accelerator => 'Q', item_type => '', extra_data => 'gtk-quit' } ] }, R_eader => { item_type => '', children => [ _Connect => { callback => \&ConnectDefaultReader, accelerator => 'C' }, Reco_nnect => { callback => \&ReconnectDefaultReader, item_type => '', extra_data => 'gtk-redo' }, _Disconnect => { callback => \&DisconnectDefaultReader, accelerator => 'D' }, Separator => { item_type => '' }, '_Status...' => { callback => \&DefaultReaderStatus, item_type => '', extra_data => 'gtk-properties' } ] }, Ru_n => { item_type => '', children => [ '_Run Script' => { callback => \&RunScript, accelerator => 'R', item_type => '', extra_data => 'gtk-execute' }, 'C_lear Result Area' => { callback => \&ClearResult, accelerator => 'L', item_type => '', extra_data => 'gtk-clear' } ] }, _Settings => { item_type => '', children => [ Reader => { callback => \&ReaderConfig, item_type => '', extra_data => 'gtk-preferences' } ] }, _Help => { item_type => '', children => [ About => { callback => \&Help, item_type => '', extra_data => 'gtk-dialog-info' } ] } ]; my $menu = Gtk2::SimpleMenu->new(menu_tree => $menu_model); $wndMain->add_accel_group( $menu->{accel_group} ); # create and arrange box containers my $vbxMainBox = Gtk2::VBox->new (FALSE, 3); my $hbxScriptBox = Gtk2::HBox->new (FALSE, 3); my $vbxScriptBox = Gtk2::VBox->new (FALSE, 10); my $hbxResultBox = Gtk2::HBox->new (FALSE, 3); my $vbxResultBox = Gtk2::VBox->new (FALSE, 3); $hbxScriptBox->pack_end($vscScript, TRUE, TRUE, 0); $vbxScriptBox->add($hbxScriptBox); $vbxScriptBox->pack_end($btnRun, FALSE, FALSE, 0); $vbxScriptBox->pack_end($chkWrap, FALSE, FALSE, 0); $vbxScriptBox->set_border_width(5); $hbxResultBox->pack_end($vscResult, TRUE, TRUE, 0); $vbxResultBox->add($hbxResultBox); $vbxResultBox->pack_start($rdbASCII, FALSE, FALSE, 0); $vbxResultBox->pack_start($rdbHex, FALSE, FALSE, 0); $vbxResultBox->set_border_width(5); # create and fill frame containers my $frmScript = Gtk2::Frame->new ("Script"); my $frmResult = Gtk2::Frame->new ("Result"); $frmScript->set_border_width(5); $frmScript->add ($vbxScriptBox); $frmResult->set_border_width(5); $frmResult->add ($vbxResultBox); my $hpaned = Gtk2::HPaned->new; $hpaned->set_border_width(5); my $hbxBox = Gtk2::HBox->new (FALSE, 10); $hpaned->add1($frmScript); $hpaned->add2($frmResult); $hbxBox->add($hpaned); $vbxMainBox->pack_start ($menu->{widget}, FALSE, FALSE, 1); $vbxMainBox->add ($hbxBox); $vbxMainBox->pack_end ($txtStatus, FALSE, FALSE, 0); $vbxMainBox->show_all(); $wndMain->add($vbxMainBox); } # Connect widgets together $chkWrap->signal_connect('toggled', sub { $txtScript->set_wrap_mode($chkWrap->get_active ? 'GTK_WRAP_CHAR' : 'GTK_WRAP_NONE'); } ); $wndMain->signal_connect ("delete_event", \&CloseAppWindow); $btnRun->signal_connect ("clicked", \&RunScript); $rdbASCII->signal_connect('toggled', \&RefreshResult); $rdbHex->signal_connect('toggled', \&RefreshResult); arrange_widgets(); ReadConfigFile(); ############################### create widgets ############################### $txtStatus->set_text ("welcome to the $strAppName application! - not connected"); # Show up everything as we should be ready by now $wndMain->show_all(); if (exists $hConfig{'script'}) { unless (ReadScriptFile ($hConfig{'script'})) { MessageBox ("Can not open $hConfig{'script'}: $!", "error", ['OK']); delete $hConfig{'script'}; } } Gtk2->main; exit; ######################### application engine follows ######################### sub MessageBox { my $strMessage = shift; my $icon_text = shift; my @ButtonDescr = @_; my $refCurButtonDescr; my $last_button; # Choose a nice title to our message box @ButtonDescr = ["OK"] unless @ButtonDescr; my $dlgDialog = Gtk2::Dialog->new; my $hbxButtonBox = Gtk2::HButtonBox->new; my $hbxTextBox = Gtk2::HBox->new (FALSE, 0); my $hbox = Gtk2::HBox->new (FALSE, 12); $dlgDialog->vbox->add ($hbox); $hbox->set_border_width(12); my $icon = Gtk2::Image->new_from_stock("gtk-dialog-" . $icon_text, "GTK_ICON_SIZE_DIALOG"); $hbox->add ($icon); # build up all the buttons and associate callbacks foreach $refCurButtonDescr (reverse @ButtonDescr) { croak ("invalid button name") unless scalar ($$refCurButtonDescr[0]); $$refCurButtonDescr[1] = sub { $dlgDialog->destroy(); } if $#$refCurButtonDescr == 0; warn ("button named '$$refCurButtonDescr[0]' has an invalid callback: '$$refCurButtonDescr[1]'") unless ref ($$refCurButtonDescr[1]); # Each button is constructed from its label my $btnTmpButton; $btnTmpButton = Gtk2::Button->new_from_stock("gtk-ok") if ($$refCurButtonDescr[0] =~ m/OK/); $btnTmpButton = Gtk2::Button->new_from_stock("gtk-cancel") if ($$refCurButtonDescr[0] =~ m/CANCEL/); $btnTmpButton = Gtk2::Button->new($$refCurButtonDescr[0]) unless defined $btnTmpButton; $btnTmpButton->can_default(1); # A mouse click on the button triggers a call to its embedded # callback then destroys the dialog box $btnTmpButton->signal_connect ("clicked", sub { &{$$refCurButtonDescr[1]}; $dlgDialog->destroy(); }); $hbxButtonBox->pack_end($btnTmpButton, FALSE, FALSE, 12); $last_button = $btnTmpButton; } $dlgDialog->action_area->pack_start($hbxButtonBox, 1, 1, 0); my $label = Gtk2::Label->new($strMessage); $hbxTextBox->pack_start($label, FALSE, FALSE, 0); $hbox->add ($hbxTextBox); # the last button is the default one $last_button->grab_default(); # Finally show up everything $dlgDialog->set_default_size (0, 0); $dlgDialog->set_modal(1); $dlgDialog->show_all(); } sub ReaderConfig { my $dlgReaderConfig = Gtk2::Dialog->new; my $txtReader = Gtk2::Label->new ("Reader"); my $cboReaders = Gtk2::ComboBox->new_text; my $rdbT0 = Gtk2::RadioButton->new(undef, "T=0"); my $rdbT1 = Gtk2::RadioButton->new($rdbT0->get_group(), "T=1"); my $rdbT01 = Gtk2::RadioButton->new($rdbT0->get_group(), "T=0 or T=1"); my $rdbRAW = Gtk2::RadioButton->new($rdbT0->get_group(), "T=RAW"); my $txtProtocol = Gtk2::Label->new ("Protocol"); my @readers_list = $hContext->ListReaders; # This sub adjusts the content of $hConfig with the selected protocol my $subProtocol = sub { $hConfig{'protocol'} = $Chipcard::PCSC::SCARD_PROTOCOL_RAW if ($rdbRAW->get_active()); $hConfig{'protocol'} = $Chipcard::PCSC::SCARD_PROTOCOL_T0 if ($rdbT0->get_active()); $hConfig{'protocol'} = $Chipcard::PCSC::SCARD_PROTOCOL_T1 if ($rdbT1->get_active()); $hConfig{'protocol'} = $Chipcard::PCSC::SCARD_PROTOCOL_T0|$Chipcard::PCSC::SCARD_PROTOCOL_T1 if ($rdbT01->get_active()); }; $rdbT0->signal_connect ('toggled', $subProtocol); $rdbT1->signal_connect ('toggled', $subProtocol); $rdbT01->signal_connect ('toggled', $subProtocol); $rdbRAW->signal_connect('toggled', $subProtocol); my $btnOK = Gtk2::Button->new_from_stock("gtk-ok"); $btnOK->signal_connect( "clicked", sub { $hConfig{'reader'} = @readers_list[$cboReaders->get_active()]; $hConfig{'reader'} = "" if (! defined $hConfig{'reader'}); $hCard->Disconnect($Chipcard::PCSC::SCARD_UNPOWER_CARD); $dlgReaderConfig->destroy(); }); $btnOK->can_default(1); my $btnCancel = Gtk2::Button->new_from_stock("gtk-cancel"); $btnCancel->signal_connect( "clicked", sub { $dlgReaderConfig->destroy(); }); $btnCancel->can_default(1); my $hbxReaderBox = Gtk2::HBox->new (FALSE, 10); my $hbxButtonBox = Gtk2::HButtonBox->new; my $hbxStatusBox = Gtk2::Table->new (4, 2, 1); $hbxReaderBox->pack_start ($txtReader, FALSE, FALSE, 10); $hbxReaderBox->pack_start ($cboReaders, 1, 1, 10); $hbxButtonBox->pack_end($btnCancel, FALSE, FALSE, 10); $hbxButtonBox->pack_end($btnOK, FALSE, FALSE, 10); # Select the last prefered protocol if any if (defined $hConfig {'protocol'}) { $rdbT0->set_active(1) if ($hConfig {'protocol'} == $Chipcard::PCSC::SCARD_PROTOCOL_T0); $rdbT1->set_active(1) if ($hConfig {'protocol'} == $Chipcard::PCSC::SCARD_PROTOCOL_T1); $rdbT01->set_active(1) if ($hConfig {'protocol'} == ($Chipcard::PCSC::SCARD_PROTOCOL_T0 | $Chipcard::PCSC::SCARD_PROTOCOL_T1)); $rdbRAW->set_active(1) if ($hConfig {'protocol'} == $Chipcard::PCSC::SCARD_PROTOCOL_RAW); } $hbxStatusBox->attach_defaults ($txtProtocol, 0, 1, 0, 1); $hbxStatusBox->attach_defaults ($rdbT0, 1, 2, 0, 1); $hbxStatusBox->attach_defaults ($rdbT1, 1, 2, 1, 2); $hbxStatusBox->attach_defaults ($rdbT01, 1, 2, 2, 3); $hbxStatusBox->attach_defaults ($rdbRAW, 1, 2, 3, 4); $cboReaders->append_text($_) for (@readers_list); # We select the first reader (default choice) $cboReaders->set_active(0); # Select the last prefered reader if any if (defined $hConfig {'reader'}) { my $i = 0; my $reader = $hConfig {'reader'}; # escape metacharacters $reader =~ s/\[/\\\[/g; $reader =~ s/\]/\\\]/g; $reader =~ s/\(/\\\[/g; $reader =~ s/\)/\\\)/g; for (@readers_list) { $cboReaders->set_active($i) if (m/$reader/); $i++; } } $dlgReaderConfig->action_area->pack_start($hbxButtonBox, TRUE, TRUE, 0); $dlgReaderConfig->vbox->set_spacing(6); $dlgReaderConfig->vbox->add ($hbxReaderBox); $dlgReaderConfig->vbox->add (new Gtk2::HSeparator()); $dlgReaderConfig->vbox->add ($hbxStatusBox); # the OK button is the default one $btnOK->grab_default(); $dlgReaderConfig->set_default_size (0, 0); $dlgReaderConfig->set_modal(1); $dlgReaderConfig->show_all(); } sub ReadConfigFile { if (-f $strConfigFileName) { die ("Can't open $strConfigFileName for reading: $!\n") unless (open (FILE, "<$strConfigFileName")); while () { chomp; next if /^#/; next if /^\s*$/; if (/^\s*(\S+)\s*=\s*\'(.*)\'$/) { $hConfig{$1} = $2; } else { print STDERR "Error while parsing $strConfigFileName\n\t'$_'\n"; } } close (FILE); } else { print STDERR "Couldn't read from $strConfigFileName. Using default configuration\n"; } $vscScript->set_size_request(split / /, $hConfig{'ScriptSize'}) if (defined $hConfig{'ScriptSize'}); $vscResult->set_size_request(split / /, $hConfig{'ResultSize'}) if (defined $hConfig{'ResultSize'}); } sub WriteConfigFile { my $strTmpKey; $hConfig{'ScriptSize'} = join (" ", $vscScript->get_size_request()); $hConfig{'ResultSize'} = join (" ", $vscResult->get_size_request()); die ("Can't open $strConfigFileName for writing: $!\n") unless (open (FILE, ">$strConfigFileName")); print FILE "# This file is automatically generated\n# Do not edit unless you know what you are doing\n\n"; foreach $strTmpKey (sort keys %hConfig) { print FILE "$strTmpKey = \'$hConfig{$strTmpKey}\'\n" if (defined $hConfig{$strTmpKey}); } close (FILE); } sub ReadScriptFile { my $strScriptFileName = shift; my $strBaseFileName = basename ($strScriptFileName); return 0 unless open (FILE, "<$strScriptFileName"); $txtScript->get_buffer->set_text(""); ($txtScript->get_buffer)->insert_at_cursor($_) while (); close (FILE); # Upon succesfull completion, we also set the window title as well # as the current ScriptfileName in the configuration hash $hConfig{'script'} = $strScriptFileName; $wndMain->set_title ("$strAppName - <$strBaseFileName>"); return 1; } sub WriteScriptFile { my $strScriptFileName = shift; my $strBaseFileName = basename ($strScriptFileName); return 0 unless open (FILE, ">$strScriptFileName"); my $textbuffer = $txtScript->get_buffer; print FILE $textbuffer->get_text($textbuffer->get_start_iter, $textbuffer->get_end_iter, 1); close (FILE); # Upon successfull completion, we also set the window title as well # as the current ScriptfileName in the configuration hash $hConfig{'script'} = $strScriptFileName; $wndMain->set_title ("$strAppName - <$strBaseFileName>"); return 1; } sub NewScriptFile { if ($txtScript->get_buffer->get_char_count()) { # That call to MessageBox will connect the OK button with a callback # that actually erase the script MessageBox( "The current work will be lost!\nAre you sure you want to continue?", "question", ["OK", sub { EraseCurrentScript(); } ], ["CANCEL"] ); } } sub EraseCurrentScript { $txtScript->get_buffer->set_text(""); $wndMain->set_title ("$strAppName"); delete $hConfig{'script'}; } sub SaveScriptFile { my ($widget) = @_; if (exists $hConfig{'script'}) { WriteScriptFile ($hConfig{'script'}); } else { SaveAsScriptFile ($widget); } } sub SaveAsScriptFile { my ($widget) = @_; my $file_dialog = Gtk2::FileSelection->new( "Save File" ); $file_dialog->ok_button->signal_connect( "clicked", sub { my $file = $file_dialog->get_filename(); if (-d $file) { MessageBox ("Can't open $file: file is a directory", "error", ['OK']); } else { MessageBox ("Can't open $file: $!", "error", ['OK']) unless WriteScriptFile ($file); } $file_dialog->destroy(); }); $file_dialog->cancel_button->signal_connect( "clicked", sub { $file_dialog->destroy(); }); if (exists $hConfig{'script'}) { $file_dialog->set_filename(dirname($hConfig{'script'})) } $file_dialog->show(); } sub LoadScriptFile { if ($txtScript->get_buffer->get_char_count()) { MessageBox( "The current work will be lost!\nAre you sure you want to continue?", "question", ["OK", \&LoadScript], ["CANCEL"] ); } else { LoadScript(); } } sub LoadScript { my $file_dialog = Gtk2::FileSelection->new( "Load File" ); $file_dialog->ok_button->signal_connect( "clicked", sub { my $file = $file_dialog->get_filename(); if (-d $file) { MessageBox ("Can't open $file: file is a directory", "error", ['OK']); } else { MessageBox ("Can't open $file: $!", "error", ['OK']) unless ReadScriptFile ($file); } $file_dialog->destroy(); }); $file_dialog->cancel_button->signal_connect( "clicked", sub { $file_dialog->destroy(); }); if (exists $hConfig{'script'}) { $file_dialog->set_filename(dirname($hConfig{'script'})."/"); } $file_dialog->show(); } sub ClearResult { $txtResult->get_buffer->set_text(""); @ResultStruct = (); } sub RefreshResult { my $tmpLine; my $tmp_value; my $textbuffer = $txtResult->get_buffer; my $tmp_text; my $state = 0; # text $textbuffer->set_text (""); my $iter = $textbuffer->get_end_iter; foreach $tmpLine (@ResultStruct) { if (ref $tmpLine) { $tmp_text = ""; if ($rdbHex->get_active) { my $c = 0; for (@$tmpLine) { $tmp_text .= sprintf ("%02X ", $_); if (++$c == 16) { $tmp_text .= "\n"; $c = 0; } } } else { my $c = 0; foreach $tmp_value (@$tmpLine) { # TODO: enhance filtering of non-printable chars # TODO: how can we use array_to_ascii here??? maybe # enhence the function so it can directly receive # ranges of chars to ignore optionally? if (($tmp_value >= 0x20) && ($tmp_value < 0x80)) { $tmp_text .= chr ($tmp_value); } else { $tmp_text .= "."; } if ($c++ == 32) { $tmp_text .= "\n"; $c = 0; } } } $textbuffer->insert_with_tags_by_name ($iter, "$tmp_text\n", "monospace", $state ? "red" : "blue"); } else { $textbuffer->insert ($iter, $tmpLine); $state = 0; $state = 1 if ($tmpLine =~ m/Received/); } } } sub ConnectDefaultReader { my @readers_list = $hContext->ListReaders; # if only one reader is found use it unconditionally $hConfig{'reader'} = $readers_list[0] if ($#readers_list == 0); if (defined $hConfig{'reader'} && !($hConfig{'reader'} eq '')) { if (defined $hCard->{hCard}) { MessageBox ( "The card is already connected...\nDo you want to reconnect?", "question", ['OK', \&ReconnectDefaultReader], ['CANCEL'] ); } else { $hCard->Connect ($hConfig{'reader'}, $Chipcard::PCSC::SCARD_SHARE_SHARED, $hConfig{'protocol'}); if (defined $hCard->{hCard}) { $txtStatus->set_text ("Connected to '$hConfig{'reader'}'"); } else { MessageBox ("Can not connect to the reader named '$hConfig{'reader'}':\n$Chipcard::PCSC::errno", "error", ['OK']) }; } } else { MessageBox ("No default reader has been configured.\nPlease make sure you have configured a reader first.", "error", ['OK']); } } sub ReconnectDefaultReader { if (defined $hCard->{hCard}) { $hCard->Reconnect ($Chipcard::PCSC::SCARD_SHARE_SHARED, $hConfig{'protocol'}, $Chipcard::PCSC::SCARD_RESET_CARD); if (defined $hCard->{hCard}) { $txtStatus->set_text ("Connected to '$hConfig{'reader'}'"); } else { MessageBox ("Can not reconnect to the reader named '$hConfig{'reader'}':\n$Chipcard::PCSC::errno", "error", ['OK']) }; } else { # we just propose to connect but do not call Reconnect() # afterwards that would be quite useless MessageBox ("The Chipcard::PCSC:Card object is not connected...\n Do you want to connect?", "question", ['OK', sub {ConnectDefaultReader();}], ['CANCEL']); } } sub DisconnectDefaultReader { if (defined $hCard->{hCard}) { $hCard->Disconnect($Chipcard::PCSC::SCARD_UNPOWER_CARD); if (defined $hCard->{hCard}) { MessageBox ("Can not disconnect from the reader named '$hConfig{'reader'}':\n$Chipcard::PCSC::errno", "error", ['OK']); } else { $txtStatus->set_text ("not connected"); }; } else { MessageBox ("The Chipcard::PCSC::Card object is not connected!", "error", ['OK']); } } sub DefaultReaderStatus { if (defined $hCard->{hCard}) { my @StatusResult = $hCard->Status(); if (defined $StatusResult[0]) { #TODO This stinks can't I rewrite it so it looks better&shorter my $tmpVal = 0; my $MessageString = "You are connected to reader $StatusResult[0].\n"; $MessageString .= "Card status (". sprintf ("0x%04X", $StatusResult[1]) ."): "; # Verbosely describes the Card Status (powered, inserted, etc.) if ($StatusResult[1] & $Chipcard::PCSC::SCARD_UNKNOWN) { $MessageString .= "'Unknown state', "; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_ABSENT) { $MessageString .= "Absent, "; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_PRESENT) { $MessageString .= "Present, "; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_SWALLOWED) { $MessageString .= "Swallowed, "; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_POWERED) { $MessageString .= "Powered, "; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_NEGOTIABLE) { $MessageString .= "'PTS is negotiable', "; } if ($StatusResult[1] & $Chipcard::PCSC::SCARD_SPECIFIC) { $MessageString .= "'PTS has been set', "; } # remove the trailing ", " substr ($MessageString, -2) = ""; # Verbosely describes the currently active protocol $MessageString .= ".\nThe active protocol (".sprintf ("0x%04X", $StatusResult[2]).") is "; if (($StatusResult[2] & $Chipcard::PCSC::SCARD_PROTOCOL_T0)) { $MessageString .= "T=0 "; } elsif (($StatusResult[2] & $Chipcard::PCSC::SCARD_PROTOCOL_T1)) { $MessageString .= "T=1 "; } elsif (($StatusResult[2] & $Chipcard::PCSC::SCARD_PROTOCOL_RAW)) { $MessageString .= "RAW "; } else { $MessageString .= "unknown"; } # Displays the ATR (if available) $MessageString .= ".\nThe ATR is "; if (defined $StatusResult[3]) { foreach (@{$StatusResult[3]}) { $MessageString .= sprintf ("%02X ", $_); } } else { $MessageString .= "not available"; } MessageBox ($MessageString, "info", ['OK']); } else { MessageBox ("Can not retrieve reader status:\n$Chipcard::PCSC::errno", "error", ['OK']) } } else { MessageBox ("The reader is not connected...\n Do you want to connect?", "question", ['OK', sub {ConnectDefaultReader(); if (defined $hCard->{hCard}) {DefaultReaderStatus();}}], ['CANCEL']); } } sub RunScript { if (defined $hCard->{hCard}) { my $textbuffer = $txtScript->get_buffer; my @tmpCommandArray = split /\n/, $textbuffer->get_text($textbuffer->get_start_iter, $textbuffer->get_end_iter, 1); my $raCurrentResult; my $nIndex; my $cmd; push @ResultStruct, "Beginning script execution...\n\n"; foreach $_ (@tmpCommandArray) { # this variable has to be inside the loop as we store a # reference to it in the result struct... it has to be # unique for each command line my $raCurrentCommand; # Skip blank lines and comments next if /^\s*$/; next if /^#/; if (/reset/i) { push @ResultStruct, "[Reset]\n"; ReconnectDefaultReader(); push @ResultStruct, "ATR: "; my @s = $hCard->Status(); push @ResultStruct, \@{$s[3]}; push @ResultStruct, "\n"; next; } # if the command does not contains spaces (00A4030000) we expand it s/(..)/$1 /g if (! m/ /); # continue if line ends in \ if (m/\\$/) { chop; # remove the \ s/ *$/ /; # replace any spaces by ONE space $cmd .= $_; next; # read next line } $cmd .= $_; # Extract bytes from the ascii string $raCurrentCommand = Chipcard::PCSC::ascii_to_array($cmd); $cmd = ""; # push them in the Display structure push @ResultStruct, "Sending: "; push @ResultStruct, $raCurrentCommand; # Transmit them to the card $raCurrentResult = $hCard->Transmit ($raCurrentCommand); if (ref $raCurrentResult) { push @ResultStruct, "Received: "; push @ResultStruct, $raCurrentResult; push @ResultStruct, Chipcard::PCSC::Card::ISO7816Error(substr Chipcard::PCSC::array_to_ascii($raCurrentResult), -5), "\n\n"; } else { MessageBox ("Transmit failed: $Chipcard::PCSC::errno\nStopping script execution", "error", ['OK']); push @ResultStruct, "\nErrors During Script Execution: $Chipcard::PCSC::errno\n"; last; } } push @ResultStruct, "Script was executed without error...\n"; } else { MessageBox ("The Chipcard::PCSC::Card object is not connected!\nDo you want to connect?", "question", ['CANCEL'], ['OK', sub {ConnectDefaultReader(); if (defined $hCard->{hCard}) {RunScript();}}]); } RefreshResult(); } sub CloseAppWindow { undef $hCard; undef $hContext; WriteConfigFile(); Gtk2->main_quit(); } sub Help { MessageBox (" $strAppName is coded by Lionel VICTOR, (C) 2001. and debugged & improved by Ludovic ROUSSEAU, (C) 2001-2006. $strAppName is (was) a small application written in Perl. It basically demonstrates how easy it is to develop a quick working prototype that uses smartcards in Perl. ", "info", ['OK'] ); } # End of File # pcsc-tools-1.4.25/pcsc_scan.c0000644000175000017500000002543312617677275016322 0ustar rousseaurousseau/* Scan and print all the PC/SC devices available Copyright (C) 2001-2011 Ludovic Rousseau This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include #include #ifdef __APPLE__ #include #include #else #include #endif #ifndef TRUE #define TRUE 1 #define FALSE 0 #endif #define TIMEOUT 1000 /* 1 second timeout */ /* command used to parse (on screen) the ATR */ #define ATR_PARSER "ATR_analysis" #ifndef SCARD_E_NO_READERS_AVAILABLE #define SCARD_E_NO_READERS_AVAILABLE 0x8010002E #endif #define test_rv(fct, rv, hContext) \ do { \ if (rv != SCARD_S_SUCCESS) \ { \ printf("%s%s: %s%s\n", red, fct, pcsc_stringify_error(rv), color_end); \ (void)SCardReleaseContext(hContext); \ exit(-1); \ } \ } while(0) static void usage(void) { printf("usage: pcsc_scan [-n] [-V] [-h]\n"); printf(" -n : no ATR analysis\n"); printf(" -V : print version number\n"); printf(" -h : this help\n"); } /* usage */ int main(int argc, char *argv[]) { int current_reader; LONG rv; SCARDCONTEXT hContext; SCARD_READERSTATE *rgReaderStates_t = NULL; SCARD_READERSTATE rgReaderStates[1]; DWORD dwReaders = 0, dwReadersOld; DWORD timeout; LPSTR mszReaders = NULL; char *ptr, **readers = NULL; int nbReaders, i; char atr[MAX_ATR_SIZE*3+1]; /* ATR in ASCII */ char atr_command[sizeof(atr)+sizeof(ATR_PARSER)+2+1]; int opt; int analyse_atr = TRUE; const char *blue = ""; const char *red = ""; const char *magenta = ""; const char *color_end = ""; int pnp = TRUE; printf("PC/SC device scanner\n"); printf("V " VERSION " (c) 2001-2011, Ludovic Rousseau \n"); printf("Compiled with PC/SC lite version: " PCSCLITE_VERSION_NUMBER "\n"); while ((opt = getopt(argc, argv, "Vhn")) != EOF) { switch (opt) { case 'n': analyse_atr = FALSE; break; case 'V': /* the version number is printed by default */ return 1; break; case 'h': default: usage(); return 1; break; } } if (argc - optind != 0) { usage(); return 1; } /* check if terminal supports color */ { const char *terms[] = { "linux", "xterm", "xterm-color", "Eterm", "rxvt", "rxvt-unicode" }; char *term; term = getenv("TERM"); if (term) { size_t j; /* for each known color terminal */ for (j = 0; j < sizeof(terms) / sizeof(terms[0]); j++) { /* we found a supported term? */ if (0 == strcmp(terms[j], term)) { blue = "\33[34m"; red = "\33[31m"; magenta = "\33[35m"; color_end = "\33[0m"; break; } } } } rv = SCardEstablishContext(SCARD_SCOPE_SYSTEM, NULL, NULL, &hContext); test_rv("SCardEstablishContext", rv, hContext); rgReaderStates[0].szReader = "\\\\?PnP?\\Notification"; rgReaderStates[0].dwCurrentState = SCARD_STATE_UNAWARE; rv = SCardGetStatusChange(hContext, 0, rgReaderStates, 1); if (rgReaderStates[0].dwEventState & SCARD_STATE_UNKNOWN) { timeout = TIMEOUT; printf("%sPlug'n play reader name not supported. Using polling every %ld ms.%s\n", magenta, timeout, color_end); pnp = FALSE; } else { timeout = INFINITE; printf("%sUsing reader plug'n play mechanism%s\n", magenta, color_end); } get_readers: /* free memory possibly allocated in a previous loop */ if (NULL != readers) { free(readers); readers = NULL; } if (NULL != rgReaderStates_t) { free(rgReaderStates_t); rgReaderStates_t = NULL; } /* Retrieve the available readers list. * * 1. Call with a null buffer to get the number of bytes to allocate * 2. malloc the necessary storage * 3. call with the real allocated buffer */ printf("%sScanning present readers...%s\n", red, color_end); rv = SCardListReaders(hContext, NULL, NULL, &dwReaders); if (rv != SCARD_E_NO_READERS_AVAILABLE) test_rv("SCardListReaders", rv, hContext); dwReadersOld = dwReaders; /* if non NULL we came back so free first */ if (mszReaders) { free(mszReaders); mszReaders = NULL; } mszReaders = malloc(sizeof(char)*dwReaders); if (mszReaders == NULL) { printf("malloc: not enough memory\n"); return 1; } *mszReaders = '\0'; rv = SCardListReaders(hContext, NULL, mszReaders, &dwReaders); /* Extract readers from the null separated string and get the total * number of readers */ nbReaders = 0; ptr = mszReaders; while (*ptr != '\0') { ptr += strlen(ptr)+1; nbReaders++; } if (SCARD_E_NO_READERS_AVAILABLE == rv || 0 == nbReaders) { printf("%sWaiting for the first reader...%s", red, color_end); fflush(stdout); if (pnp) { rgReaderStates[0].szReader = "\\\\?PnP?\\Notification"; rgReaderStates[0].dwCurrentState = SCARD_STATE_UNAWARE; rv = SCardGetStatusChange(hContext, INFINITE, rgReaderStates, 1); test_rv("SCardGetStatusChange", rv, hContext); } else { rv = SCARD_S_SUCCESS; while ((SCARD_S_SUCCESS == rv) && (dwReaders == dwReadersOld)) { rv = SCardListReaders(hContext, NULL, NULL, &dwReaders); if (SCARD_E_NO_READERS_AVAILABLE == rv) rv = SCARD_S_SUCCESS; sleep(1); } } printf("found one\n"); goto get_readers; } else test_rv("SCardListReader", rv, hContext); /* allocate the readers table */ readers = calloc(nbReaders+1, sizeof(char *)); if (NULL == readers) { printf("Not enough memory for readers table\n"); return -1; } /* fill the readers table */ nbReaders = 0; ptr = mszReaders; while (*ptr != '\0') { printf("%s%d: %s%s\n", blue, nbReaders, ptr, color_end); readers[nbReaders] = ptr; ptr += strlen(ptr)+1; nbReaders++; } /* allocate the ReaderStates table */ rgReaderStates_t = calloc(nbReaders+1, sizeof(* rgReaderStates_t)); if (NULL == rgReaderStates_t) { printf("Not enough memory for readers states\n"); return -1; } /* Set the initial states to something we do not know * The loop below will include this state to the dwCurrentState */ for (i=0; i 0) { printf(" ATR: "); if (rgReaderStates_t[current_reader].cbAtr) { unsigned int j; for (j=0; j insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME pcsc_scan \- regularly scans every PC/SC readers connected to the host .SH SYNOPSIS .BI "pcsc_scan [" options ] .SH DESCRIPTION This manual page documents briefly the .B pcsc_scan command. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBpcsc_scan\fP is a program that regularly scans every PC/SC readers connected to the host The normal way to exit the program is to use Control-C. When \fBpcsc_scan\fP is started it asks \fBpcscd\fP the list of available smart card readers. The list is printed. A sequence number is printed before each reader. Example: PC/SC device scanner V 1.1.0 (c) 2001-2002, Ludovic Rousseau PC/SC lite version: 1.1.1 0: GemPC410 0 0 1: GemPC430 0 0 When a card is inserted in any reader some information is printed: .TP date and time: Thu Jun 13 18:56:14 2002 .TP reader name: Reader 0 (GemPC410 0 0) .TP card state and occured event: Card state: State has changed, Card inserted, .TP ATR in case of card insertion: ATR: 3B 82 00 86 1E .TP print an ATR analysis if the \fBATR_analysis\fP command is available: ATR: 3B 82 00 86 1E + TS = 3B --> Direct Convention + T0 = 82, Y(1): 1000, K: 2 (historical bytes) TD(1) = 00 --> Y(i+1) = 0000, Protocol T = 0 ----- + Historical bytes: 86 1E .SH OPTIONS .TP .B \-h print help .TP .B \-V print version number .TP .B \-n do not print ATR analysis .SH SEE ALSO .BR pcscd "(8), " ATR_analysis (1) .SH AUTHOR Ludovic Rousseau pcsc-tools-1.4.25/LICENCE0000644000175000017500000004311012512013305015143 0ustar rousseaurousseau GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. pcsc-tools-1.4.25/ATR_analysis.1p0000644000175000017500000000222012512013305016746 0ustar rousseaurousseau.TH ATR_ANALYSIS "1p" "October 2005" "Version: 1.3" "User Commands" .SH NAME ATR_analysis \- analyse a smart card ATR .SH SYNOPSIS .B ATR_analysis .RI [ ATRstring ] .SH DESCRIPTION .B ATR_analysis is used to parse the ATR (Answer To Reset) sent by a smart card. .P The command also tries to find the card model using an ATR database stored in a text file .IR smartcard_list.txt . The .I smartcard_list.txt file is searched in .IR ./ , .I /usr/local/pcsc/ and .I /usr/share/pcsc/ directories. .P Exemple: $ ATR_analysis '3B A7 00 40 18 80 65 A2 08 01 01 52' ATR: 3B A7 00 40 18 80 65 A2 08 01 01 52 + TS = 3B --> Direct Convention + T0 = A7, Y(1): 1010, K: 7 (historical bytes) TB(1) = 00 --> Programming Param P: 0, I: 0 TD(1) = 40 --> Y(i+1) = 0100, Protocol T = 0 ----- TC(2) = 18 --> Work waiting time: 960 x 24 x (Fi/F) + Historical bytes: 80 65 A2 08 01 01 52 Possibly identified card: 3B A7 00 40 18 80 65 A2 08 01 01 52 Gemplus GPK8000 .P .SH BUGS Maybe many bugs since I am not a ISO 7816 expert. .SH FILES .I smartcard_list.txt .SH "SEE ALSO" .BR pcscd "(8), " pcsc_scan (1) .SH AUTHOR Ludovic Rousseau pcsc-tools-1.4.25/gscriptor.1p0000644000175000017500000000305212512013305016435 0ustar rousseaurousseau.\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH GSCRIPTOR 1p "octobre 19, 2001" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME gscriptor \- Perl script to send commands to a smart card using a Gtk GUI .SH SYNOPSIS .B gscriptor .SH DESCRIPTION This manual page documents briefly the .B gscriptor command. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBgscriptor\fP is a program that sends commands to a smart card using a batch file. The syntax of the commands is the same as for scriptor(1). \fBscriptor\fP(1) is in text mode. \fBgscriptor\fP(1) uses a Perl-Gtk graphical user interface and may be more user friendly. See \fBscriptor\fP(1) for details on the comands format. .SH OPTIONS none .SH SEE ALSO .BR pcscd (1), scriptor (1) .br .SH AUTHOR This manual page was written by Ludovic Rousseau , for the Debian GNU/Linux system (but may be used by others). pcsc-tools-1.4.25/gscriptor.desktop0000644000175000017500000000021312512013305017562 0ustar rousseaurousseau[Desktop Entry] Name=Gscriptor Comment=Send commands to smart cards Exec=gscriptor Terminal=false Type=Application Categories=Utility;GTK; pcsc-tools-1.4.25/README0000644000175000017500000003236012617701462015061 0ustar rousseaurousseauSome tools to be used with smart cards and PC/SC ================================================ This archive contains some tools usefull for a PC/SC user. PC/SC lite [1] from MUSCLE [2]. The tools provided are: - pcsc_scan (Ludovic Rousseau ) regularly scans every PC/SC reader connected to the host if a card is inserted or removed a "line" is printed For example: PC/SC device scanner V 1.4.5 (c) 2001-2006, Ludovic Rousseau PC/SC lite version: 1.3.1 0: GemPC410 0 0 1: GemPC430 0 0 Wed Aug 21 10:08:02 2002 Reader 0 (GemPC410 0 0) Card state: Card removed, Wed Aug 21 10:08:09 2002 Reader 0 (GemPC410 0 0) Card state: Card inserted, ATR: 3B 6D 00 FF 00 31 80 71 8E 64 48 D5 02 00 82 90 00 ATR: 3B 6D 00 FF 00 31 80 71 8E 64 48 D5 02 00 82 90 00 + TS = 3B --> Direct Convention + T0 = 6D, Y(1): 0110, K: 13 (historical bytes) TB(1) = 00 --> Programming Param P: 0, I: 0 TC(1) = FF --> Extra guard time: 255 + Historical bytes: 00 31 80 71 8E 64 48 D5 02 00 82 90 00 Category indicator byte: 00 (compact TLV data object) Tag: 3, len: 1 (card service data byte) Card service data byte: 80 - Application selection: by full DF name - EF.DIR and EF.ATR access services: by GET RECORD(s) command - Card with MF Tag: 7, len: 1 (card capabilities) Selection methods: 8E - DF selection by full DF name - Implicit DF selection - Short EF identifier supported - Record number supported Tag: 6, len: 4 (pre-issuing data) Data: 48 D5 02 00 Mandatory status indicator (3 last bytes) LCS (life card cycle): 82 (Proprietary) SW: 9000 (Normal processing.) Possibly identified card: 3B 6D 00 FF 00 31 80 71 8E 64 48 D5 02 00 82 90 00 Blue for Business, American Express@Business Wed Aug 21 10:09:57 2002 Reader 0 (GemPC410 0 0) Card state: Card removed, - ATR_analysis (Christophe Levantis and Ludovic Rousseau) Perl script used to parse the smart card ATR. This script is called (by default) by pcsc_scan This code was originally written by Christophe in August 2000 for a Perl wrapper using "TLP driver" (and not PC/SC) to access the smartcard. - smartcard_list.txt (Ludovic Rousseau) This list contains ATR of some cards. The list is used by ATR_analysis to find a card model corresponding to the ATR. I took the initial list from SCEZ by Matthias Bruestle. Please send me () any ATR and card description not included in the list. - scriptor (Lionel Victor ) A Perl script to send commands to a smart card. You can use a file containing the commands or stdin. - gscriptor (Lionel Victor ) A Perl script to send commands to a smart card with GTK-based graphical interface. You will need the package pcsc-perl [3] to be able to use scriptor and gscriptor. [1] http://pcsclite.alioth.debian.org/ [2] http://linuxnet.com/ [3] http://ludovic.rousseau.free.fr/softwares/pcsc-perl/ Authors: ======== - Lionel VICTOR for scriptor and gscriptor - Ludovic ROUSSEAU for pcsc_scan, ATR_analysis and debug of scriptor and gscriptor - Christophe LEVANTIS for the original code of ATR_analysis Licences: ========= pcsc-tools Copyright (C) 2001 Lionel VICTOR Copyright (C) 2001-2012 Ludovic ROUSSEAU This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA History: ======== 1.4.25 - 8 November 2015, Ludovic ROUSSEAU - 44 new ATRs - ATR_analysis: fix the update of the local cache 1.4.24 - 7 August 2015, Ludovic ROUSSEAU - 253 new ATRs - ATR_analysis: better update of the local cache 1.4.23 - 13 September 2014, Ludovic ROUSSEAU - 137 new ATRs 1.4.22 - 17 January 2014, Ludovic ROUSSEAU - 215 new ATRs - Fetch a new ATR file if it was not upgraded in the last 10 hours. - Propose to use http://smartcard-atr.appspot.com/parse to submit a new ATR - minor fixes 1.4.21 - 5 Dec 2012, Ludovic ROUSSEAU - Do not log the time every second on "old" PC/SC without support of \\?PnP?\Notification like on Mac OS X. - 79 new ATRS - minor fixes 1.4.20 - 16 June 2012, Ludovic ROUSSEAU - Makefile: Add arguments to CFLAGS instead of overwritting them - 3 new ATRs 1.4.19 - 13 June 2012, Ludovic ROUSSEAU - ATR_analysis: use XDG_CACHE_HOME env variable The smartcard_list.txt file is now searched in ~/.cache/ by default - 115 new ATRs 1.4.18 - 18 December 2011, Ludovic ROUSSEAU - gscriptor: Display hex dumps in lines of 16 bytes instead of 17 - gscriptor: Display bytes of value 0x20 as ' ' instead of '.' - scriptor: Display lines of 16 bytes instead of 24 - 223 new ATRs - pcsc_scan: Correctly detect reader Plug and Play support 1.4.17 - 18 August 2010, Ludovic ROUSSEAU - 153 new ATRs - Allow to build with pcsc-lite >= 1.6.2 1.4.16 - 12 January 2010, Ludovic ROUSSEAU - 153 new ATR - pcsc_scan.c: check for PnP support at run time instead of using a #define - ATR_analysis: use curl instead of wget on Darwin - gscriptor: ReaderConfig(): escape metacharacters []() in the reader name when using reader name as a pattern matching 1.4.15 - 9 January 2009, Ludovic ROUSSEAU - 68 new ATR - ATR_analysis: . truncate the ATR if extra bytes are present (like on Leopard with an ATR padded with 0 up to 33 bytes) . add value for Di=7 (7816-3:2006 page 19) . check if Fi is RFU when calculating baud rate . display the max frequency associated with Fi - pcsc_scan.c: use "\\?PnP?\Notification" mechanism when possible 1.4.14 - 11 May 2008, Ludovic ROUSSEAU - 24 new ATR - gscriptor, scriptor: use SCARD_SHARE_SHARED instead of SCARD_SHARE_EXCLUSIVE to not lock the card - ATR_analysis: add support for ATR with : as byte separator (ATR reported by "opensc-tool --atr" for example) 1.4.13 - 23 March 2008, Ludovic ROUSSEAU - 29 new ATR - pcsc_scan: avoid a bug when the last reader is removed 1.4.12 - 2 February 2008, Ludovic ROUSSEAU - 18 new ATR - handle SCARD_E_NO_READERS_AVAILABLE when no reader is found 1.4.11 - 30 October 2007, Ludovic ROUSSEAU - 69 new ATR - use /usr/bin/env perl to get the correct Perl - print card description in blue 1.4.10 - 10 August 2007, Ludovic ROUSSEAU - 25 new ATR - scriptor: correctly display the ISO7816 error code even when the line is splitted - gscriptor: the line continuation feature was broken 1.4.9 - 1 June 2007, Ludovic ROUSSEAU - 69 new ATR - pcsc_scan.c: use pcsc_stringify_error() to display a human readable error message - ATR_analysis: add colors - scriptor: echo the lines read from a file (commands, comments and empty lines) 1.4.8 - 26 Novembre 2006, Ludovic ROUSSEAU - 14 new ATR - pcsc_scan: cleanly fail (instead of looping forever) if the pcscd daemon just dies - ATR_analysis: . add test for TC1=255 . add case TB1=0: VPP is not electrically connected . add the communication speed according to TA1 and a clock at 3.5712 MHz . use %g instead of %.3f to display the cycles/ETU value to have 31 instead of 31.000 1.4.7 - 4 October 2006, Ludovic ROUSSEAU - 10 new ATR - pcsc_scan.c: add a couple of fflush(stdout); to force the display so that redirection works. Thanks to Johannes Becker for the bug report 1.4.6 - 12 August 2006, Ludovic ROUSSEAU - 28 new ATRs in smartcard_list.txt - scriptor/gscriptor: allow multi-lines input and wrap long output. lines ending with \ are to continue on the next line. More easy to use a 64K-bytes long APDU. 1.4.5 - 8 May 2006, Ludovic ROUSSEAU - 9 new ATR - improve ATR_analysis: add code to parse the historical bytes 1.4.4 - 25 Mar 2006, Ludovic ROUSSEAU - 4 new ATR - improve gscriptor GUI: add icons in the dialog boxes, use button boxes - improve ATR_analysis: display and check TCK 1.4.3 - 9 Mar 2006, Ludovic ROUSSEAU - the glibc do not accept double free() anymore and stops the process instead "*** glibc detected *** double free or corruption (fasttop): 0x0804b070 ***". So be sure not to call free() a second time on the same pointer. 1.4.2 - 7 Mar 2006, Ludovic ROUSSEAU - 58 new ATR in smartcard_list.txt - pcsc_scan: add color output support - add a freedesktop.org compatible menu entry for gscriptor (thanks to Ville Skyttä) 1.4.1 - 29 May 2005, Ludovic ROUSSEAU - 42 new ATR in smartcard_list.txt - ATR_analysis: . accept 3B A7 00 40 18 80 65 A2 08 01 01 52 and not just '3B A7 00 40 18 80 65 A2 08 01 01 52' as command line argument . check ~/.smartcard_list.txt for known ATR . add instructions to download and install a new version of the list - gscriptor: if only one reader is found use it unconditionally 1.4.0 - 6 August 2004, Ludovic ROUSSEAU - 13 new ATR in smartcard_list.txt - rewrite of gscriptor using libgtk2-perl - if the command does not contains spaces (00A4030000) we expand it 1.3.4 - 4 July 2004, Ludovic ROUSSEAU - 5 new ATR in smartcard_list.txt - pcsc_scan.c: LPSTR -> LPTSTR for pcsc-lite 1.2.9 beta4 - scriptor, gscriptor: only send the 5 last characters of the response to Chipcard::PCSC::Card::ISO7816Error() The SW was sometimes not correctly parsed. - Makefile: use 'pkg-config libpcsclite [--cflags|--libs]' 1.3.3 - 2 April 2004, Ludovic ROUSSEAU - use a dynamic table for readers to avoid any use of the deprecated PCSCLITE_MAX_CHANNELS constant - 11 new ATR in smartcard_list.txt - add support of PCSC MacOS X framework 1.3.2 - 17 December 2003, Ludovic ROUSSEAU - scriptor: by default let pcscd select the protocol among T=0 and T=1 . print the protocol actually used . print textual status word according to ISO 7816 - gscriptor: change menu accelerator for Run so it can be used even if a text Text widget is selected . use paned windows to resize Script and Result frames . print textual status word according to ISO 7816 - 16 new ATR in smartcard_list.txt 1.3.1 - 29 Octobre 2003, Ludovic ROUSSEAU - ATR_analysis: only ask to send me the ATR and card description if it is a microprocessor card. I am not (yet) interested in a list of memory cards. - scriptor, scriptor.1p: add -p argument to specify the ISO 7816 protocol to use (T=0 or T=1) - 26 new ATR in smartcard_list.txt 1.3.0 - 31 May 2003, Ludovic ROUSSEAU - pcsc_scan.c: detect reader insertion/removal (USB) and adjust the reader list accordingly - 4 new ATR in smartcard_list.txt 1.2.5 - 25 May 2003, Ludovic ROUSSEAU - use new naming scheme from pcsc-perl Chipcard::PCSC instead of PCSC - 32 new ATR in smartcard_list.txt 1.2.4 - 28 Jan 2003, Ludovic ROUSSEAU - 20 new ATRs in the database - Makefile: use PCSCBASE to find libpcsclite library 1.2.3 - 16 Nov 2002, Ludovic ROUSSEAU - Add the URL of the latest smartcard_list.txt file in the error message printed if the ATR is not already known - use an updated version of smartcard_list.txt 1.2.2 - 15 Oct 2002, Ludovic ROUSSEAU - correct some compilation problems. See Makefile if you have a xBSD system - use an updated version of smartcard_list.txt. Thanks to all the contributors. 1.2.1 - 27 Aug 2002, Ludovic ROUSSEAU - add ATR to smartcard_list.txt - make the ATR match case insensitive 1.2.0 - 21 Aug 2002, Ludovic ROUSSEAU - creation of smartcard_list.txt - exploitation of the ATR list by ATR_analysis 1.1.0 - 14 Jun 2002, Ludovic ROUSSEAU - include ATR_analysis and support for it in pcsc_scan - modify pcsc_scan.c to listen to all the readers at once (Lionel) 1.0.4 - 6 Mar 2002, Ludovic ROUSSEAU - gscriptor: case insensitive on "reset" command - scriptor: case insensitive on "exit" and "reset" commands - add the history, authors and licence in this README 1.0.3 - 8 Nov 2001, Ludovic ROUSSEAU - pcsc_scan.c: set the wait time to 0 to get all the events - Makefile: add automatic rules to compress man pages and other modifications 1.0.2 - 22 Oct 2001, Ludovic ROUSSEAU - add manpages - pcsc_scan.c: go to the next reader _after_ printing information for the current one 1.0.1 - 18 Oct 2001, Ludovic ROUSSEAU vim:ts=8: pcsc-tools-1.4.25/test.script0000644000175000017500000000061612512013305016367 0ustar rousseaurousseau# # Script to read a GSM SIM card # (c) 2001, Ludovic Rousseau # reset the card reset # Select MF 3F00 A0 A4 00 00 02 3F 00 # Get Reponse # 17 is the value of second SW from the previous command A0 C0 00 00 17 # Select DF Telecom (7F10) A0 A4 00 00 02 7F 10 # Get Response A0 C0 00 00 17 # Select EF_ADN (6F3A) (Abbreviated Dialing Numbers) A0 A4 00 00 02 6F 3A # Get Reponse A0 C0 00 00 0F