From c8fbcdd076a4371ca7a637d07214eb54bb06e5c0 Mon Sep 17 00:00:00 2001 From: Lukas Wunner Date: Thu, 1 Oct 2015 16:27:00 +0200 Subject: [PATCH] card-gemsafeV1: Add ATR for European Patent Office smart card The EPO hands this card out to attorneys and inventors to authenticate with their online services. The applet on the card seems to be identical to the one on Swedish eID cards. Ludovic Rousseau's list identifies the card as Gemalto IDClassic 340. Gemalto Classic Client identifies the card as GemSAFE V3. Previously the EPO was using a GemSAFE V1 card, its ATR was added with 81bbddfc24de ("card-gemsafeV1: Add a GemSafe V1 ATR"). --- src/libopensc/card-gemsafeV1.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libopensc/card-gemsafeV1.c b/src/libopensc/card-gemsafeV1.c index 28ba39a4..13f1ba50 100644 --- a/src/libopensc/card-gemsafeV1.c +++ b/src/libopensc/card-gemsafeV1.c @@ -63,6 +63,8 @@ static struct sc_atr_table gemsafe_atrs[] = { {"3B:7D:95:00:00:80:31:80:65:B0:83:11:00:C8:83:00:90:00", NULL, NULL, SC_CARD_TYPE_GEMSAFEV1_PTEID, 0, NULL}, /* Swedish eID card */ {"3B:7D:96:00:00:80:31:80:65:B0:83:11:00:C8:83:00:90:00", NULL, NULL, SC_CARD_TYPE_GEMSAFEV1_SEEID, 0, NULL}, + /* European Patent Office epoline card*/ + {"3b:7d:96:00:00:80:31:80:65:b0:83:02:01:f3:83:00:90:00", NULL, NULL, SC_CARD_TYPE_GEMSAFEV1_SEEID, 0, NULL}, {NULL, NULL, NULL, 0, 0, NULL} };