fortify
fortify copied to clipboard
Add support for '3bfd1800008131fe4553434536302d43433038312d46c2' token
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 thanks for this. Do you know where the PKCS#11 libraries are installed for this token?
Hello, in my mac is on "/Applications/tokenadmin.app/Contents/Frameworks/libaetpkss.dylib".
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.
@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
Hello @microshine,
After a little correction, by putting a comma that was missing, it worked without any problem!
Thanks!!!
@microshine Can we add changes to card.json
?