fortify icon indicating copy to clipboard operation
fortify copied to clipboard

Add support for '3bfd1800008131fe4553434536302d43433038312d46c2' token

Open edsono opened this issue 6 years ago • 6 comments

Reader name: Giesecke & Devrient GmbH StarSign Crypto USB Token ATR: 3BFD1800008131FE4553434536302D43433038312D46C2

{
   "cards": [{
   	"atr": "3BFD1800008131FE4553434536302D43433038312D46C2",
   	"name": "Token name",
   	"driver": "4485A4DCDF92D361F7418D0C447FEC810C609F12"
   }],
   "drivers": [{
   	"id": "4485A4DCDF92D361F7418D0C447FEC810C609F12",
   	"name": "Driver name",
   	"file": {
   		"windows": "path/to/pkcs11.dll",
   		"osx": "path/to/pkcs11.dylib"
   	}
   }]
}

Smart card ATR parsing 3BFD1800008131FE4553434536302D43433038312D46C2

edsono avatar Feb 26 '19 14:02 edsono

@edsono thanks for this. Do you know where the PKCS#11 libraries are installed for this token?

rmhrisk avatar Feb 26 '19 18:02 rmhrisk

Hello, in my mac is on "/Applications/tokenadmin.app/Contents/Frameworks/libaetpkss.dylib".

edsono avatar Feb 27 '19 15:02 edsono

Thanks, it looks like https://lastpass.com/support.php?cmd=showfaq&id=2255&lang=de-de has the other paths.

We will work on a update with this data.

rmhrisk avatar Feb 27 '19 15:02 rmhrisk

@edsono Can you try to update your ~/.fortify/card.json

  • update card.json
  • resart Fortify
{
  "cards": [
    {
      "atr": "3BFD1800008131FE4553434536302D43433038312D46C2",
      "name": "Giesecke & Devrient StarSign USB Token",
      "driver": "4485A4DCDF92D361F7418D0C447FEC810C609F12"
    }
  ],
  "drivers": [
    {
      "id": "4485A4DCDF92D361F7418D0C447FEC810C609F12",
      "name": "aetpkss",
      "file": {
        "windows": "%WINDIR/System32/aetpkss1.dll",
        "osx": [
          "/usr/local/lib/libaetpkss.dylib"
          "/Applications/tokenadmin.app/Contents/Frameworks/libaetpkss.dylib",
        ],
        "linux": "/usr/lib/libaetpkss.so"
      }
    }
  ]
}

If it works I'll update and publish new version of card.json

microshine avatar Mar 25 '19 11:03 microshine

Hello @microshine,

After a little correction, by putting a comma that was missing, it worked without any problem!

Thanks!!!

edsono avatar Apr 02 '19 16:04 edsono

@microshine Can we add changes to card.json?

donskov avatar Nov 24 '20 16:11 donskov