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 17 matches: re:

Searched query: re

by choimillen
Fri Oct 13, 2017 3:53 am
Forum: Questions & Answers
Topic: Doubt about JavaCard Memory
Replies: 3
Views: 7901

Re: Doubt about JavaCard Memory

When you create a byte array, all values are initialized to 0. Looking at your loops, it seems you're adding 0's only. Smart card operating systems normally do a read before write, to make sure not the same value is written. It saves time, and in case of EEPROM also to prolong the lifetime. I think ...
by choimillen
Mon Oct 02, 2017 12:44 am
Forum: Questions & Answers
Topic: Cryptographic operations with the Card Manager
Replies: 3
Views: 8495

Re: Cryptographic operations with the Card Manager

Due to security reasons reading the key back is prohibited. You can only get information what type of key is stored.
by choimillen
Sun Oct 01, 2017 5:25 pm
Forum: Questions & Answers
Topic: Cryptographic operations with the Card Manager
Replies: 3
Views: 8495

Re: Cryptographic operations with the Card Manager

You cannot do cryptographic operations with ISD. You must write an applet and use KeyPair and Signature class.
by choimillen
Fri Sep 15, 2017 5:14 am
Forum: Questions & Answers
Topic: Error 6E00 when receiving the response data under T0
Replies: 2
Views: 6832

Re: Error 6E00 when receiving the response data under T0

For T=0, JCRE needs to send 61xx , where xx is the number of expected bytes. The CAD then sends a GET RESPONSE, with the same CLA byte as before and Le == xx. Finally the JCRE send the response.
by choimillen
Fri Sep 15, 2017 4:15 am
Forum: Questions & Answers
Topic: command usage of GET-DATA and STORE-DATA
Replies: 1
Views: 6266

Re: command usage of GET-DATA and STORE-DATA

You cannot use all the Data Grouping Index, 2 byte TLV . Some are already populated and can only be read, others cannot be written. Use the 0070 Data Grouping Index to put your data into the Security Domain's data store.
by choimillen
Fri Aug 11, 2017 3:40 am
Forum: Questions & Answers
Topic: TCP of Java Card 3.0
Replies: 1
Views: 5460

Re: TCP of Java Card 3.0

TCP is mandatory, and APDU is mandatory as well, as you need to be compatible to the Classic Edition. You need to run a server on the card and your communication layer has to process the TCP over IP/UDP/USB packets beforehand.
by choimillen
Sat May 27, 2017 5:26 am
Forum: Questions & Answers
Topic: Find the data back in Buffer
Replies: 3
Views: 7313

Re: Find the data back in Buffer

Please add this command:

Code: Select all

apdu.setIncomingAndReceive();
by choimillen
Tue Jan 24, 2017 4:07 am
Forum: Questions & Answers
Topic: How to use keyBuilder class
Replies: 3
Views: 8261

Re: How to use keyBuilder class

Build a key using keybuilder methods and cast: RSAPublicKey k1 = (RSAPublicKey)KeyBuilder.buildKey(KeyBuilder.TYPE_RSA_PUBLIC, KeyBuilder.LENGTH_RSA_1024); Then, use: k1.setExponent(bytearray, offsettoexponent); k1.setModulus(bytearray, offsettomodulus); k1.getExponent(destination, wheretostore); .....
by choimillen
Mon Jan 16, 2017 5:38 am
Forum: Questions & Answers
Topic: supplementary security domain
Replies: 1
Views: 5847

Re: supplementary security domain

A SSD does not have the same functionality as an ISD. ISD is open in GP terms. Cards may have a load file pre-loaded that can instantiate an SSD.
by choimillen
Thu Dec 01, 2016 2:03 am
Forum: Questions & Answers
Topic: Send GP commands with MAC via pyApduTool or pyResMan
Replies: 4
Views: 10463

Re: Send GP commands with MAC via pyApduTool or pyResMan

The below is the related description quoted from Chapter SecurityLevel in GlobalPlatform spec. SCP02 -> Secure Communication -> Security Level C_MAC after a successful processing of an EXTERNAL AUTHENTICATE command with P1 indicating C-MAC (P1='x1' or 'x3') C_DECRYPTION after a successful processing...
JavaCard OS : Disclaimer