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 39 matches

by Crawford
Thu Oct 27, 2016 3:06 am
Forum: Questions & Answers
Topic: Create a VISA card by myself
Replies: 2
Views: 6991

Re: Create a VISA card by myself

Yes, of course. Just find out VSDC Visa applet by google, then upload and install this applet into your card.
But you may have to certify the entire package.
by Crawford
Thu Oct 06, 2016 9:26 am
Forum: Questions & Answers
Topic: SAM
Replies: 2
Views: 5742

Re: SAM

Regarding the connection between reader and SAM, it really depends on the implementation.
by Crawford
Mon Jun 27, 2016 5:49 am
Forum: Questions & Answers
Topic: the structure of context in java card
Replies: 2
Views: 6457

Re: the structure of context in java card

Moreover, in your structure of FRAME, there must include context_id field like this:

Code: Select all

typedef struct frame {
u1 last_pc;
u2 *lvars;
u2 *ostack;
method_info *mi;
class_info *ci;
struct frame *prev;
u1 context_id;
} Frame;
by Crawford
Mon Jun 27, 2016 5:00 am
Forum: Questions & Answers
Topic: the structure of context in java card
Replies: 2
Views: 6457

Re: the structure of context in java card

Context is only an identifier, that is associated with different packages or JCRE.

Its structure may be like this:
context{
u1 context_id
u2 package_addr;
u2 applet_instance_addr;
}


if context is JCRE context, all above entry may be *0xFF*.
by Crawford
Tue Jun 21, 2016 4:59 am
Forum: Questions & Answers
Topic: How can I make my applet auto selectable?
Replies: 1
Views: 5506

Re: How can I make my applet auto selectable?

Well, to do this, you should make your applet default selected when installing your applet.

Just take pyapdutool as an example:
When dialog box "Install" pops up, click on the V mark in the left side of the option "Default Selected"

auto_selectable.gif
by Crawford
Tue May 03, 2016 8:37 am
Forum: Questions & Answers
Topic: convert my CAP file into sequence of APDU
Replies: 5
Views: 10403

Re: convert my CAP file into sequence of APDU

Thanks for your help! The section you mentioned only defines the structure of the Load File, but not the way of converting .cap file into a sequence of APDUs data block. Use the order for creating a binary blob of data from the cap file and then use the GP LOAD command. A CAP file is a JAR file wit...
by Crawford
Tue May 03, 2016 5:58 am
Forum: Questions & Answers
Topic: convert my CAP file into sequence of APDU
Replies: 5
Views: 10403

Re: convert my CAP file into sequence of APDU

You can refer to JCVM and GP specification. The JCVM spec defines the order in which the components of the CAP file should be put together and then it is multiple LOAD APDU's to send the data to the card.
by Crawford
Fri Apr 15, 2016 5:57 am
Forum: Questions & Answers
Topic: applet component
Replies: 3
Views: 8126

Re: applet component

There is no root applet. Each applet is just packaged in a flat way inside the CAP file as if they were just different classes.
by Crawford
Mon Jan 04, 2016 1:07 am
Forum: Card Products
Topic: How to know files'ID present in my card
Replies: 1
Views: 5780

Re: How to know files'ID present in my card

I will not suggest this. You can simply ask your vendor about file structure present in your card.
by Crawford
Sun Jan 03, 2016 11:43 pm
Forum: Questions & Answers
Topic: How to pass APDU command from one selected instance to another instance?
Replies: 1
Views: 4732

Re: How to pass APDU command from one selected instance to another instance?

As far as I know, the SELECT command will typically cause the currently selected applet to change to an applet with a matching AID.
JavaCard OS : Disclaimer