The Card

The Software

Test System

Distribution

Build

Usage


# Syslog when the reader is connected
kernel: [6746106.503427] usb 1-4.3: New USB device found, idVendor=08e6, idProduct=3437
kernel: [6746106.503436] usb 1-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
kernel: [6746106.503440] usb 1-4.3: Product: USB SmartCard Reader
kernel: [6746106.503444] usb 1-4.3: Manufacturer: Gemplus

# Make sure the reader is seen.
$ opensc-tool  --list-readers
Readers known about:
Nr.    Driver     Name
0      pcsc       Gemalto GemPC Twin 00 00

# Make sure you can talk to the card
$ opensc-tool --atr
Using reader with a card: Gemalto GemPC Twin 00 00
3b:16:96:41:73:74:72:69:64

# Note: The light on the reader blinks when there is no card.
#       The light is on solid when the card is inserted.

# Note: There is no OpenSC driver for this card.  Beyond getting the ATR,
#       there is little you can do with opensc-tool.

# Generate a key pair for use with SSH
pkcs11-tool --module /usr/local/lib/pkcs11/libgtop11dotnet.so \
            --keypairgen --key-type rsa:2048  \
            --login \
            --label "benchoff-ssh-gemalto" --id 20111104

Questions