Our Online Store have the new products: RFID antenna board. Currently it can work with JC10M24R and JCOP4 card chips.
Compared with normal cards, the antenna board module has a smaller size and fixed holes, which is easy to integrate in the IOT(Internet Of Things) project.

Search found 76 matches

by horse dream
Mon Nov 09, 2015 5:55 am
Forum: Questions & Answers
Topic: How do I create a security domain and install applet in the security domain?
Replies: 2
Views: 8657

Re: How do I create a security domain and install applet in the security domain?

For these questions, you can find all the answers in GP 2.1.1 spec. 1. Create a security domain 1) Select ISD AID: A0 00 00 00 03 00 00 00 // Please see GP 2.1.1 charpter 9.9 for more details. 2) Init-update and External-Authenticate // Please see GP 2.1.1 charpter E.5 for more details. 3) Send Inst...
by horse dream
Sat Nov 07, 2015 5:31 am
Forum: Questions & Answers
Topic: How to copy a .cap file from one java card to another card
Replies: 2
Views: 7074

Re: How to copy a .cap file from one java card to another card

There is no way to do this. Smart card is high security and it is non-cloneability.
by horse dream
Tue Nov 03, 2015 8:48 am
Forum: Questions & Answers
Topic: some basic Questions about java card OS development
Replies: 1
Views: 5077

Re: some basic Questions about java card OS development

Q1: You can use C/C++ to develop the java card OS. Q2: You are right. The card manufacturer shall provide a tool chain for this. Q3&4: It depend on the card you use and you should refer to the developer documentation that the manufacturer provide for you. Q5: If the card is GP compliant, it will...
by horse dream
Tue Nov 03, 2015 1:49 am
Forum: Algorithm School
Topic: Hash table on smart card
Replies: 2
Views: 7113

Re: Hash table on smart card

Of course, you should also implement your own data structure.
by horse dream
Tue Nov 03, 2015 1:46 am
Forum: Algorithm School
Topic: Hash table on smart card
Replies: 2
Views: 7113

Re: Hash table on smart card

Yes,you are right. The smart card only stores the configuration, and the terminal sends the instruction to get stored configuration or update it via APDU commands. For this goal, you should create your own java card applet. And the applet should process at least three APDUs: -- Get list of terminal ...
by horse dream
Mon Nov 02, 2015 11:35 pm
Forum: Algorithm School
Topic: How can I do the offline transactions
Replies: 1
Views: 5588

Re: How can I do the offline transactions

You should store the offline balance in the persistent memory. Moreover, updates to this persistent memory must be atomic. That is if a transaction is going on and there is a card tear, then the transaction should be invalid. For this, Java Card has the beginTransaction and abortTransaction methods ...
by horse dream
Fri Oct 30, 2015 5:36 am
Forum: Card Products
Topic: Looking for a document describing javacard jcf file format
Replies: 1
Views: 5559

Re: Looking for a document describing javacard jcf file format

As far as I know, jcf and bin (ijc) file formats seems identical except that jcf as a header who gives the length of the data , the rest are the concatenation of the cap components. The structure of jcf is just as : 0xC4 0x82 0xLL 0xLL DATA -0xC482 is the data tag. -0xLLLL is the length of data. -DA...
by horse dream
Fri Oct 30, 2015 5:27 am
Forum: Questions & Answers
Topic: make two object of OwnerPIN for security ?
Replies: 1
Views: 5479

Re: make two object of OwnerPIN for security ?

OwnerPIN provides security features. So for user authentication, the OwnerPIN is surely a good way to carry out.

For terminal authentication, you may need to choose some form of mutual authentication instead of a simple PIN code for security.
by horse dream
Fri Oct 16, 2015 11:16 pm
Forum: Card Products
Topic: Change the state of security domain in A40CR card
Replies: 2
Views: 6872

Re: Change the state of security domain in A40CR card

As far as I know, there is no specific step to change the state of Security Domain to PERSONALIZED.
You should upload keys to Security Domain using PUT KEY commands. Then transition to PERSONALIZED state will be performed automatically.
by horse dream
Fri Oct 09, 2015 2:34 am
Forum: Questions & Answers
Topic: Get java card CIN in applet
Replies: 3
Views: 8170

Re: Get java card CIN in applet

Could you tell me which apdu command to use to get the cin, serial number... well basically all of the card specific information? The ones that are burned in and not changeable? Thanks for any help! You could look through the section "9.3 GET DATA Command" in GP Card Specification 2.1.1. ...
JavaCard OS : Disclaimer