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

by chico0609
Mon Jun 19, 2017 2:01 am
Forum: Questions & Answers
Topic: How to use APDU instance in install method
Replies: 3
Views: 8202

Re: How to use APDU instance in install method

Because the byte[] in the install method is the global buffer. You will need to defer this call until the process method has been invoked.
by chico0609
Thu May 25, 2017 6:00 am
Forum: Questions & Answers
Topic: secure channel security question
Replies: 1
Views: 5009

Re: secure channel security question

Acctually, it's not a good idea to use the global platform secure channel.
If the keys are compromised, an attacker can then manage the card.

So donot use the GP secure channel for application security.
by chico0609
Thu May 25, 2017 5:57 am
Forum: Questions & Answers
Topic: How to decode the response data
Replies: 2
Views: 6408

Re: How to decode the response data

It seems that it is wrong TLV-coded data.
by chico0609
Tue May 09, 2017 4:46 am
Forum: Questions & Answers
Topic: How to get big number
Replies: 3
Views: 7068

Re: How to get big number

When you have a byte that is greater than 0x7F and meanwhile you want to make it an unsigned value, you can use the following to prevent the sign extension:

Code: Select all


short a = (short) (b & 0xFF);

by chico0609
Fri Apr 28, 2017 4:23 am
Forum: Algorithm School
Topic: cipher/ decipher with 3DES alg
Replies: 4
Views: 10519

Re: cipher/ decipher with 3DES alg

Try to use AES instead.
by chico0609
Thu Apr 27, 2017 4:17 am
Forum: Algorithm School
Topic: cipher/ decipher with 3DES alg
Replies: 4
Views: 10519

Re: cipher/ decipher with 3DES alg

It seems that your problem has something to do with DES weak key. Do you use weak key?
by chico0609
Thu Apr 27, 2017 4:12 am
Forum: Algorithm School
Topic: Difference between KeyBuilder and KeyPair
Replies: 3
Views: 10174

Re: Difference between KeyBuilder and KeyPair

Yes, if you use new statement, the key objects will be stored in persistent memory.

You just need to write once and then you can read many times.
by chico0609
Wed Apr 26, 2017 6:00 am
Forum: Algorithm School
Topic: Difference between KeyBuilder and KeyPair
Replies: 3
Views: 10174

Re: Difference between KeyBuilder and KeyPair

buildKey is not used to generate a key. And what type of memory is used by the genKeyPair() method, Transient or Persistent ? From my understanding, it is common for a smart cards to have RAM dedicated to cryptographic operations. In fact, as much of the operation as possible is done in transient RA...
by chico0609
Tue Mar 07, 2017 3:25 am
Forum: Questions & Answers
Topic: Does JCIDE support HMAC?
Replies: 3
Views: 8425

Re: Does JCIDE support HMAC?

JCIDE doesn't support HMAC.
by chico0609
Tue Feb 21, 2017 5:52 am
Forum: Questions & Answers
Topic: Exclude debug.cap in JCIDE
Replies: 1
Views: 6151

Re: Exclude debug.cap in JCIDE

There is an option under "Build" - "Property". On the property sheet, just disable "- debug" option. Then your final cap file will not include debug.cap.

JCIDE_configuration.png
JavaCard OS : Disclaimer