Question

I am new to the smart card world. I would like to ask one question. I have a Mifare Plus card, and I want to "communicate" with it somehow (e.g., send commands etc.). What are the available SDKs for it? (Preferable language: C/C++ although some other languages could also be ok). I also have a reader.

Was it helpful?

Solution

There is a library named "Winscard".you should use it.

Win32 API for communicating with smartcards within Windows platform in form SCardXXX.Similar implementation for Linux is developed under Muscle project as PC/SC Lite API. We will work with in Windows platform. Following functions will be used:

  • SCardEstablishContext
  • SCardListReaders
  • SCardConnect
  • SCardReconnect
  • SCardDisconnect
  • SCardReleaseContext
  • SCardTransmit

EDIT:

Read this document Omnikey_Contactless_developer_Guide

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top