Build your first Java application


Overview

This quick start describes how to create a ready-to-execute Java command-line application that runs a simple transaction based on a Calypso Card involving two smart card readers.

The demonstration application created for this quick start requires:

  • a Calypso Card (contactless smart card, NFC mobile phone with a Calypso applet or application),
  • a Calypso SAM (Secure Access Module).

We will use three main components of Keyple:

In this guide Gradle is used as build automation tool, but it is easy to transpose these explanations to another tool such as Maven for example.

See here for the configuration of the dependencies.

The example can run on any machine: Linux, Windows and macOS. If not installed in your machine, you will need to download :

We recommend that you use a Java IDE like Eclipse or Intellij IDEA to create your new Gradle project.


Create a Gradle-based empty project

Create a new Java project and add the following statements to your build.gradle file to import the Keyple components into your project:

plugins {
    id 'java'
}

repositories {
    mavenCentral()
}

dependencies {
    // Import Keypop APIs
    implementation 'org.eclipse.keypop:keypop-reader-java-api:2.0.1'
    implementation 'org.eclipse.keypop:keypop-calypso-card-java-api:2.0.1'
    // Import Keyple components
    implementation 'org.eclipse.keyple:keyple-common-java-api:2.0.1'
    implementation 'org.eclipse.keyple:keyple-util-java-lib:2.4.0'
    implementation 'org.eclipse.keyple:keyple-service-java-lib:3.2.1'
    implementation 'org.eclipse.keyple:keyple-card-calypso-java-lib:3.1.1'
    implementation 'org.eclipse.keyple:keyple-plugin-pcsc-java-lib:2.2.1'
}

If necessary, also create the usual tree in which the Java code of this guide will be placed, namely the folders: \src\main\java


Let’s code

Now let’s see step by step how to create in one single class the elements that allow a certified reading of data through a Calypso secure session.

In a real ticketing application, the organization of the code would probably be different, but the point here is to show how Keyple makes it possible to perform very simply operations that normally require a quantity of code and knowledge that far exceeds what is implemented here.

You can either progressively copy each of the small portions of code that follow or copy the whole class at the bottom of this page.

Create the class skeleton

Copy the source code below in a new Java Class named DemoCardAuthentication.

import org.eclipse.keyple.card.calypso.CalypsoExtensionService;
import org.eclipse.keyple.card.calypso.crypto.legacysam.LegacySamExtensionService;
import org.eclipse.keyple.core.service.Plugin;
import org.eclipse.keyple.core.service.SmartCardService;
import org.eclipse.keyple.core.service.SmartCardServiceProvider;
import org.eclipse.keyple.plugin.pcsc.PcscPluginFactoryBuilder;
import org.eclipse.keyple.plugin.pcsc.PcscReader;
import org.eclipse.keypop.calypso.card.CalypsoCardApiFactory;
import org.eclipse.keypop.calypso.card.WriteAccessLevel;
import org.eclipse.keypop.calypso.card.card.CalypsoCard;
import org.eclipse.keypop.calypso.card.card.CalypsoCardSelectionExtension;
import org.eclipse.keypop.calypso.card.transaction.ChannelControl;
import org.eclipse.keypop.calypso.card.transaction.SymmetricCryptoSecuritySetting;
import org.eclipse.keypop.calypso.crypto.legacysam.LegacySamApiFactory;
import org.eclipse.keypop.calypso.crypto.legacysam.sam.LegacySam;
import org.eclipse.keypop.reader.CardReader;
import org.eclipse.keypop.reader.ReaderApiFactory;
import org.eclipse.keypop.reader.selection.*;

public class DemoCardAuthentication {

  // The names of the readers must be adapted to the actual configuration.
  private static final String CARD_READER_NAME = "ASK LoGO 0";
  private static final String SAM_READER_NAME = "Identive CLOUD 2700 R Smart Card Reader 0";
  private static final String AID = "315449432E49434131"; // Keyple test kit profile 1, Application 2
  private static final int RECORD_NUMBER_1 = 1;
  private static final byte SFI_ENVIRONMENT_AND_HOLDER = (byte) 0x07;

  public static void main(String[] args) {
    // ... 
  }
}

Retrieve the main services and factories

The SmartCardService is used to register the plugins and check the extensions. The ReaderApiFactory creates the classes needed to manage the card selection.

    // Get the instance of the SmartCardService
    SmartCardService smartCardService = SmartCardServiceProvider.getService();

    // Get the ReaderApiFactory
    ReaderApiFactory readerApiFactory = smartCardService.getReaderApiFactory();

Set up the PC/SC plugin

The first step to use Keyple is to initialize the plugin and smart card readers.

In this snippet the PC/SC plugin is registered to the SmartCardService.

Two readers needs to be connected to the local machine. Change “CARD_READER_NAME” and “SAM_READER_NAME” with the name of your USB readers.

If you don’t know the names of the readers, read how to find them in the FAQ.

    // Register the PcscPlugin with the SmartCardService, get a generic plugin instance in return
    Plugin plugin = smartCardService.registerPlugin(PcscPluginFactoryBuilder.builder().build());

    // Get and set up the card reader
    CardReader cardReader = plugin.getReader(CARD_READER_NAME);
    if (cardReader == null) {
      throw new IllegalStateException("Card reader " + CARD_READER_NAME + " not found.");
    }
    // Set the card reader type (for ratification management purpose)
    plugin.getReaderExtension(PcscReader.class, CARD_READER_NAME).setContactless(true);
    if (!cardReader.isCardPresent()) {
      throw new IllegalStateException("No card is present in the reader " + cardReader.getName());
    }

    // Get and set up the SAM reader
    CardReader samReader = plugin.getReader(SAM_READER_NAME);
    if (samReader == null) {
      throw new IllegalStateException("SAM reader " + SAM_READER_NAME + " not found.");
    }
    if (!samReader.isCardPresent()) {
      throw new IllegalStateException("No SAM is present in the reader " + samReader.getName());
    }

Set up the Calypso card extension

The Calypso card extension service will provide means to handle cards, SAMs and to manage card transactions.

    // Get the Calypso card extension service
    CalypsoExtensionService calypsoExtensionService = CalypsoExtensionService.getInstance();
    // Verify that the extension's API level is consistent with the current service.
    smartCardService.checkCardExtension(calypsoExtensionService);

Select the Legacy SAM

Before executing a transaction each smart card should be selected. The next step is the selection of the Calypso SAM resulting in a CalypsoSam object.

It is then combined with the SAM reader to form the SAM resource needed later within the transaction service.

    // Create a SAM selection manager.
    CardSelectionManager samSelectionManager = readerApiFactory.createCardSelectionManager();

    // Create a card selector without filer
    CardSelector<BasicCardSelector> samCardSelector = readerApiFactory.createBasicCardSelector();

    LegacySamApiFactory legacySamApiFactory =
        LegacySamExtensionService.getInstance().getLegacySamApiFactory();

    // Create a SAM selection using the Calypso card extension.
    samSelectionManager.prepareSelection(
        samCardSelector, legacySamApiFactory.createLegacySamSelectionExtension());

    CardSelectionResult samSelectionResult =
        samSelectionManager.processCardSelectionScenario(samReader);

    LegacySam sam = (LegacySam) samSelectionResult.getActiveSmartCard();
    if (sam == null) {
      throw new IllegalStateException("The SAM selection failed.");
    }

Select the Calypso card

1st card exchange:

The Calypso card selection is made using the card application’s AID and results in a CalypsoCard object that will contain all the information extracted from the Calypso card all along the transaction.

    // Retrieve the CalypsoCardApiFactory
    CalypsoCardApiFactory calypsoCardApiFactory =
        calypsoExtensionService.getCalypsoCardApiFactory();

    // Select the card
    CardSelectionManager cardSelectionManager = readerApiFactory.createCardSelectionManager();

    // Create a generic ISO selector
    CardSelector<IsoCardSelector> cardSelector =
        readerApiFactory.createIsoCardSelector().filterByDfName(AID);

    // Create a specific Calypso card selection extension
    CalypsoCardSelectionExtension calypsoCardSelectionExtension =
        calypsoCardApiFactory.createCalypsoCardSelectionExtension().acceptInvalidatedCard();
    
    // Prepare the card selection
    cardSelectionManager.prepareSelection(cardSelector, calypsoCardSelectionExtension);

    // Process the card selection
    CardSelectionResult selectionResult =
        cardSelectionManager.processCardSelectionScenario(cardReader);

    if (selectionResult.getActiveSmartCard() == null) {
      throw new IllegalStateException("The selection of the application " + AID + " failed.");
    }

    CalypsoCard calypsoCard = (CalypsoCard) selectionResult.getActiveSmartCard();

Set up the security settings

The security settings holds the means to communicate with the SAM and parameters used during the card transaction. They may be reused each time a card is presented.

    // Prepare the security settings used during the Calypso transaction
    SymmetricCryptoSecuritySetting symmetricCryptoSecuritySetting =
        calypsoCardApiFactory.createSymmetricCryptoSecuritySetting(
            LegacySamExtensionService.getInstance()
                .getLegacySamApiFactory()
                .createSymmetricCryptoTransactionManagerFactory(samReader, sam));

Open the Calypso secure session

2nd card exchange :

The secure session opening operated by the CardTransaction service is combined with the reading of the environment file (SFI=07h).

The mutual authentication process between Calypso card and Calypso SAM is initiated transparently.

    // Performs file reads using the card transaction manager in a secure session, keep the channel open.
    SecureRegularModeTransactionManager cardTransactionManager = calypsoCardApiFactory
            .createSecureRegularModeTransactionManager(
                    cardReader, calypsoCard, symmetricCryptoSecuritySetting)
            .prepareOpenSecureSession(WriteAccessLevel.DEBIT)
            .prepareReadRecord(SFI_ENVIRONMENT_AND_HOLDER, RECORD_NUMBER_1)
            .processCommands(ChannelControl.KEEP_OPEN);

    System.out.println(
        "= #### FILE CONTENT = " + calypsoCard.getFileBySfi(SFI_ENVIRONMENT_AND_HOLDER).toString());

Close the Calypso secure session

3rd card exchange:

Simply close the Calypso secure session

The mutual authentication is finalized, it includes the authentication of the data in the read file.

Note: any technical, cryptographic or content-related incident in the Calypso card would be signalled by an exception and would interrupt the thread of execution.

    // Close the secure session, free the communication channel at the same time
    cardTransactionManager
            .prepareCloseSecureSession()
            .processCommands(ChannelControl.CLOSE_AFTER);

    System.out.println(
        "= #### The Secure Session ended successfully, the card is authenticated and the data read are certified.");

    System.out.println("= #### End of the Calypso card processing.");

Unregister the plugin

Finally unregister the plugin before shutting down the application

    // Unregister the plugin before leaving the application
    smartCardService.unregisterPlugin(plugin.getName());

Find the complete code source below.


Run

  1. Connect two USB PC/SC Readers.
  2. Insert the Calypso SAM in the SAM reader.
  3. Insert the Calypso card in the card reader.
  4. Run the application.
All project dependencies, including Keyple components, are downloaded during the first run, which can take some time.

FAQ

How do I find out the names of the readers?

To find out the names of the readers connected to your computer, we will use Keyple with the following class which prints in the console the number and names of the readers present:

import org.eclipse.keyple.core.service.Plugin;
import org.eclipse.keyple.core.service.SmartCardService;
import org.eclipse.keyple.plugin.pcsc.PcscPluginFactoryBuilder;

import java.util.Set;

public class ReaderDiscovery {
  public static void main(String[] args) {
    SmartCardService smartCardService = SmartCardServiceProvider.getService();
    Plugin plugin = smartCardService.registerPlugin(PcscPluginFactoryBuilder.builder().build());
    Set<String> names = plugin.getReaderNames();
    System.out.println(names.size() + " readers found.");
    for (String name : names) {
      System.out.println('"' + name + '"');
    }
  }
} 

The console output should look something like:

2 readers found.
"ASK LoGO 0"
"Identive CLOUD 2700 R Smart Card Reader 0"

Identify which reader will be the card (contactless) reader and the SAM (contact) reader and replace CARD_READER_NAME and SAM_READER_NAME with their values.

How to activate the Keyple’s logs?

As soon as the slf4j library is imported into the project, Keyple modules are able to produce logs.

    // Import logger libs
    implementation 'org.slf4j:slf4j-api:1.7.32'
    implementation 'org.slf4j:slf4j-simple:1.7.32'

However, to take full advantage of the possibilities of this library, it is necessary to create a simplelogger.properties file in the /src/main/resources folder of the project.

The self-documented content of this file may be:

# SLF4J's SimpleLogger configuration file
# Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to System.err.

# Default logging detail level for all instances of SimpleLogger.
# Must be one of ("trace", "debug", "info", "warn", or "error").
# If not specified, defaults to "info".
org.slf4j.simpleLogger.defaultLogLevel=debug

# Logging detail level for a SimpleLogger instance named "xxxxx".
# Must be one of ("trace", "debug", "info", "warn", or "error").
# If not specified, the default logging detail level is used.
#org.slf4j.simpleLogger.log.xxxxx=

# Set to true if you want the current date and time to be included in output messages.
# Default is false, and will output the number of milliseconds elapsed since startup.
org.slf4j.simpleLogger.showDateTime=true

# The date and time format to be used in the output messages.
# The pattern describing the date and time format is the same that is used in java.text.SimpleDateFormat.
# If the format is not specified or is invalid, the default format is used.
# The default format is yyyy-MM-dd HH:mm:ss:SSS Z.
org.slf4j.simpleLogger.dateTimeFormat=[HH:mm:ss:SSS]

# Set to true if you want to output the current thread name.
# Defaults to true.
org.slf4j.simpleLogger.showThreadName=true

# Set to true if you want the Logger instance name to be included in output messages.
# Defaults to true.
org.slf4j.simpleLogger.showLogName=false

# Set to true if you want the last component of the name to be included in output messages.
# Defaults to false.
org.slf4j.simpleLogger.showShortLogName=true

org.slf4j.simpleLogger.levelInBrackets=true

Why do I see a warning in the console about illegal reflexive access

when running the application?

A known problem on Windows 8/10 platforms causes the smartcard service to stop when the last reader is removed. This problem prevents a “classic” monitoring of connections and disconnections of readers with the smartcard.io library (Java PC/SC). So for the moment we are using a workaround based on reflexivity to overcome this problem and allow a correct monitoring of the readers in the PC/SC plugin. This has the disadvantage of generating a warning message with recent versions of the JVM. However, we have not found any problems with this implementation of the PC/SC plugin so far.

Full code

Here is the complete code of this quick start in one single block.

import org.eclipse.keyple.card.calypso.CalypsoExtensionService;
import org.eclipse.keyple.card.calypso.crypto.legacysam.LegacySamExtensionService;
import org.eclipse.keyple.core.service.Plugin;
import org.eclipse.keyple.core.service.SmartCardService;
import org.eclipse.keyple.core.service.SmartCardServiceProvider;
import org.eclipse.keyple.plugin.pcsc.PcscPluginFactoryBuilder;
import org.eclipse.keyple.plugin.pcsc.PcscReader;
import org.eclipse.keypop.calypso.card.CalypsoCardApiFactory;
import org.eclipse.keypop.calypso.card.WriteAccessLevel;
import org.eclipse.keypop.calypso.card.card.CalypsoCard;
import org.eclipse.keypop.calypso.card.card.CalypsoCardSelectionExtension;
import org.eclipse.keypop.calypso.card.transaction.ChannelControl;
import org.eclipse.keypop.calypso.card.transaction.SecureRegularModeTransactionManager;
import org.eclipse.keypop.calypso.card.transaction.SymmetricCryptoSecuritySetting;
import org.eclipse.keypop.calypso.crypto.legacysam.LegacySamApiFactory;
import org.eclipse.keypop.calypso.crypto.legacysam.sam.LegacySam;
import org.eclipse.keypop.reader.CardReader;
import org.eclipse.keypop.reader.ReaderApiFactory;
import org.eclipse.keypop.reader.selection.*;


public class DemoCardAuthentication {

  // The names of the readers must be adapted to the actual configuration.
  private static final String CARD_READER_NAME = "ASK LoGO 0";
  private static final String SAM_READER_NAME = "Identive CLOUD 2700 R Smart Card Reader 0";
  private static final String AID =
      "315449432E49434131"; // Keyple test kit profile 1, Application 2
  private static final int RECORD_NUMBER_1 = 1;
  private static final byte SFI_ENVIRONMENT_AND_HOLDER = (byte) 0x07;

  public static void main(String[] args) {

    // Get the instance of the SmartCardService
    SmartCardService smartCardService = SmartCardServiceProvider.getService();

    // Get the ReaderApiFactory
    ReaderApiFactory readerApiFactory = smartCardService.getReaderApiFactory();

    // Register the PcscPlugin with the SmartCardService, get a generic plugin instance in return
    Plugin plugin = smartCardService.registerPlugin(PcscPluginFactoryBuilder.builder().build());

    // Get and set up the card reader
    CardReader cardReader = plugin.getReader(CARD_READER_NAME);
    if (cardReader == null) {
      throw new IllegalStateException("Card reader " + CARD_READER_NAME + " not found.");
    }
    // Set the card reader type (for ratification management purpose)
    plugin.getReaderExtension(PcscReader.class, CARD_READER_NAME).setContactless(true);
    if (!cardReader.isCardPresent()) {
      throw new IllegalStateException("No card is present in the reader " + cardReader.getName());
    }

    // Get and set up the SAM reader
    CardReader samReader = plugin.getReader(SAM_READER_NAME);
    if (samReader == null) {
      throw new IllegalStateException("SAM reader " + SAM_READER_NAME + " not found.");
    }
    if (!samReader.isCardPresent()) {
      throw new IllegalStateException("No SAM is present in the reader " + samReader.getName());
    }

    // Get the Calypso card extension service
    CalypsoExtensionService calypsoExtensionService = CalypsoExtensionService.getInstance();
    // Verify that the extension's API level is consistent with the current service.
    smartCardService.checkCardExtension(calypsoExtensionService);

    // Create a SAM selection manager.
    CardSelectionManager samSelectionManager = readerApiFactory.createCardSelectionManager();

    // Create a card selector without filer
    CardSelector<BasicCardSelector> samCardSelector = readerApiFactory.createBasicCardSelector();

    LegacySamApiFactory legacySamApiFactory =
        LegacySamExtensionService.getInstance().getLegacySamApiFactory();

    // Create a SAM selection using the Calypso card extension.
    samSelectionManager.prepareSelection(
        samCardSelector, legacySamApiFactory.createLegacySamSelectionExtension());

    CardSelectionResult samSelectionResult =
        samSelectionManager.processCardSelectionScenario(samReader);

    LegacySam sam = (LegacySam) samSelectionResult.getActiveSmartCard();
    if (sam == null) {
      throw new IllegalStateException("The SAM selection failed.");
    }

    // Retrieve the CalypsoCardApiFactory
    CalypsoCardApiFactory calypsoCardApiFactory =
        calypsoExtensionService.getCalypsoCardApiFactory();

    // Select the card
    CardSelectionManager cardSelectionManager = readerApiFactory.createCardSelectionManager();

    // Create a generic ISO selector
    CardSelector<IsoCardSelector> cardSelector =
        readerApiFactory.createIsoCardSelector().filterByDfName(AID);

    // Create a specific Calypso card selection extension
    CalypsoCardSelectionExtension calypsoCardSelectionExtension =
        calypsoCardApiFactory.createCalypsoCardSelectionExtension().acceptInvalidatedCard();

    // Prepare the card selection
    cardSelectionManager.prepareSelection(cardSelector, calypsoCardSelectionExtension);

    // Process the card selection
    CardSelectionResult selectionResult =
        cardSelectionManager.processCardSelectionScenario(cardReader);

    if (selectionResult.getActiveSmartCard() == null) {
      throw new IllegalStateException("The selection of the application " + AID + " failed.");
    }

    CalypsoCard calypsoCard = (CalypsoCard) selectionResult.getActiveSmartCard();

    // Prepare the security settings used during the Calypso transaction
    SymmetricCryptoSecuritySetting symmetricCryptoSecuritySetting =
        calypsoCardApiFactory.createSymmetricCryptoSecuritySetting(
            LegacySamExtensionService.getInstance()
                .getLegacySamApiFactory()
                .createSymmetricCryptoTransactionManagerFactory(samReader, sam));

    // Performs file reads using the card transaction manager in a secure session, keep the channel
    // open.
    SecureRegularModeTransactionManager cardTransactionManager =
        calypsoCardApiFactory
            .createSecureRegularModeTransactionManager(
                cardReader, calypsoCard, symmetricCryptoSecuritySetting)
            .prepareOpenSecureSession(WriteAccessLevel.DEBIT)
            .prepareReadRecord(SFI_ENVIRONMENT_AND_HOLDER, RECORD_NUMBER_1)
            .processCommands(ChannelControl.KEEP_OPEN);

    System.out.println(
        "= #### FILE CONTENT = " + calypsoCard.getFileBySfi(SFI_ENVIRONMENT_AND_HOLDER).toString());

    // Close the secure session, close the channel.
    cardTransactionManager.prepareCloseSecureSession().processCommands(ChannelControl.CLOSE_AFTER);

    System.out.println(
        "= #### The Secure Session ended successfully, the card is authenticated and the data read are certified.");

    System.out.println("= #### End of the Calypso card processing.");

    // Unregister the plugin before leaving the application
    smartCardService.unregisterPlugin(plugin.getName());
  }
}
Next