soth
soth

Reputation: 31

Does Mifare 1k card support Java Card?

I developed Java card applet on JCOP cards, and it's well loaded and worked fine. Could I load the same applet on Mifare 1K or 4K card? Because, I did not find any specification according to Java card or Global Platform support in the MIFARE documentation.

Thank you.

Upvotes: 1

Views: 714

Answers (2)

daparic
daparic

Reputation: 4444

The applet in JCOP cards are only for Java Card platform that executes this applet. The MIFARE 1K or 4K can only store or use as secure storage following the DESFire API which had a fixed command set only related to secure storage but cannot do other stuff like run a custom applet. For custom applet, only a Java Card can do that. For example, a Java Card can emulate the DESFire API bcoz of a custom applet. But a MIFARE 1k/4k instruction set is fixed.

Upvotes: 2

vlp
vlp

Reputation: 8106

You cannot.

But there are Java cards with Mifare emulation available (by NXP and other vendors). Here MIFARE memory is accessible from your applet via special api (JetZ, Memory). Ask NXP for more details.

Upvotes: 2

Related Questions