Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a free virtual SmartCard which I could use to run some tests?

Tags:

java

smartcard

I imagine this makes no difference, but I will try to access it using a Java application.

UPDATE: I'll use smart cards in a public/private keys encryption system.

like image 999
The Student Avatar asked Dec 03 '22 05:12

The Student


1 Answers

There are different types of smart cards and you're not making clear which kind of test you mean, but I guess you're talking about cryptographic smart cards.

JavaCard development kit contains a reference JCRE which can be used to emulate a hardware JavaCard in software, so you can "deploy" your smart card applet (if you're writing one) to the non-existant smart card and test it with apdutool [1]

[1] http://www.developer.com/tech/article.php/913451/A-Java-Card-Primer-Part-2.htm

like image 158
Martin Paljak Avatar answered Dec 06 '22 09:12

Martin Paljak