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

by happy123654
Mon Jul 23, 2018 5:50 am
Forum: Questions & Answers
Topic: how to set status of apdu command
Replies: 3
Views: 7098

Re: how to set status of apdu command

If you want to set the status of APDU command. there are two situations: 1. the status equals to 0x9000, you set nothing because the JVCOS will help the applet to set the status. 2. the status means the exception or the private implication. you can use the ISOException.throwIt(status) to set the sta...
by happy123654
Mon Jul 23, 2018 5:44 am
Forum: Questions & Answers
Topic: Retain the specific data while update the applet
Replies: 3
Views: 6523

Re: Retain the specific data while update the applet

There has the new GP specification for the update which can save the customer old data, which need that the JVCOS and the applet support the function decribed in the specification.
by happy123654
Mon Jul 23, 2018 5:37 am
Forum: Questions & Answers
Topic: 3Des encript and decrypt
Replies: 1
Views: 5151

Re: 3Des encript and decrypt

the input data for 3DES encryption is divided into many blocks and every block has the fixed length: 64bit = 8bytes. If the last block does not match the length, we need to pad this block, which make the block to be 64bit. the padding mode have the followed: public static final byte PAD_ISO9796 publ...
by happy123654
Mon Jul 23, 2018 5:14 am
Forum: Questions & Answers
Topic: Remove applet failed? Delete applet failed in java card?
Replies: 3
Views: 8480

Re: Remove applet failed? Delete applet failed in java card?

If you want to delete the applet which creates the static field for the package, there are two steps: 1) delete the package and applet. If there are other applet which belongs to the same package, the applet will deleted too. If the other applet belongs to other package, the other applet change noth...
by happy123654
Fri Jul 13, 2018 5:47 am
Forum: Questions & Answers
Topic: How to manage expand flash on JavaCard
Replies: 1
Views: 4521

Re: How to manage expand flash on JavaCard

Base the flash chip infomation, you should consult about the api with the chip developer . The API can implements reading or writting flash data.
by happy123654
Fri Jul 13, 2018 5:21 am
Forum: Questions & Answers
Topic: Question about the ECDH
Replies: 3
Views: 6807

Re: Question about the ECDH

there will have SHA_1 calculation in the last step of ECDH and the result of SHA_1 is 20 bytes
by happy123654
Fri Jul 13, 2018 5:17 am
Forum: Questions & Answers
Topic: Remove applet failed? Delete applet failed in java card?
Replies: 3
Views: 8480

Re: Remove applet failed? Delete applet failed in java card?

I guess the reason is as followed:
There are static field defined in the package and the static field is created in this applet.
You can delete both the package and the applet. or you can remove the creation of the static field in this applet.
by happy123654
Fri Jul 13, 2018 5:12 am
Forum: Questions & Answers
Topic: Why the byte length of KeyAgreement.generateSecret() is 20
Replies: 3
Views: 6284

Re: Why the byte length of KeyAgreement.generateSecret() is 20

Because the function implements SHA_1 calculation in the last step.
by happy123654
Fri Jul 13, 2018 5:10 am
Forum: Questions & Answers
Topic: How to set EC parameters of Keypair
Replies: 5
Views: 9473

Re: How to set EC parameters of Keypair

You can set the parameter via the API :setA; setB; setG; setR; setK;setFieldFP;setFieldF2M.
If you don't set the parameter into the card cos. the cos may use the default parameter.
by happy123654
Thu Jul 05, 2018 4:28 am
Forum: Questions & Answers
Topic: RSA algorithem
Replies: 2
Views: 5372

Re: RSA algorithem

There are the RSA public key from 512(bit length) to 4096(bit length) in new JAVACARD special 3.0.5 public static final short LENGTH_RSA_512 = 512; public static final short LENGTH_RSA_736 = 736; public static final short LENGTH_RSA_768 = 768; public static final short LENGTH_RSA_896 = 896; public s...
JavaCard OS : Disclaimer