I have a ACR1281 reader. I'm trying to load authentication keys on the reader without a card.
When I write:
var isoReader = new IsoReader(
context, readerName, SCardShareMode.Shared, SCardProtocol.Any, false)
it returns me a "Removed Card" error.
But if I use SCardShareMode.Direct
, I can't transmit apdu-commands
to load authentication keys.
Can I work with the reader without a card? Which mode and protocol do I need?