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

by Bob2002
Thu Dec 24, 2015 10:53 pm
Forum: Algorithm School
Topic: How to send public key to host application
Replies: 1
Views: 6548

Re: How to send public key to host application

This project will helpful some code like /** * Generate an assymetric RSA key pair according to ISO7816-8, * Section 5.1. We only support RSA 1024 bit at the moment, and * return data in simple TLV data objects, tags 81 and 82. * * Successful MSE command has to be performed prior to this one. */ pr...
by Bob2002
Sat Dec 19, 2015 11:31 pm
Forum: Card Products
Topic: Find a kind of card with PKCS11 module
Replies: 3
Views: 9375

Re: Find a kind of card with PKCS11 module

If you have no smartcard reader, then OpenPGPApplet + eJava Token is good choice.
by Bob2002
Sat Dec 19, 2015 11:25 pm
Forum: Card Products
Topic: Find a kind of card with PKCS11 module
Replies: 3
Views: 9375

Re: Find a kind of card with PKCS11 module

I guess this page is useful.
BTW, OpenPGP Smartcard = OpenPGPApplet + JavaCard
by Bob2002
Sat Dec 05, 2015 10:11 pm
Forum: Shopping FAQ
Topic: Is there any Christmas promotions in your store?
Replies: 3
Views: 9143

Re: Is there any Christmas promotions in your store?

Dear Customer, Congratulations! You got $10.00 coupon in our promotion - Wheel of Fortune. You are very lucky! Here is the coupon code: ****************** Paste this code at shopping cart page. Click Apply button, the corresponding amount will be deducted from order amount. Use this coupon now. May ...
by Bob2002
Thu Oct 29, 2015 5:26 am
Forum: Reader
Topic: ACR128 Reader Driver
Replies: 1
Views: 6468

Re: ACR128 Reader Driver

What is difference between ACR128 and R502 ?
by Bob2002
Tue Oct 20, 2015 6:35 am
Forum: Questions & Answers
Topic: How to let APDU buffer accept 200 bytes of data
Replies: 6
Views: 14673

Re: How to let APDU buffer accept 200 bytes of data

...   byte[] buffer = apdu.getBuffer();   short bytes_left = (short) buffer[ISO.OFFSET_LC];   short readCount = apdu.setIncomingAndReceive();   while (bytes_left > 0) {   // Process received data in buffer; copy chunk to temp buf.   Util.arrayCopy(buffer, ISO.OFFSET_CDATA, tbuf, 0, readCount);   by...
by Bob2002
Tue Oct 20, 2015 6:26 am
Forum: Questions & Answers
Topic: How to let APDU buffer accept 200 bytes of data
Replies: 6
Views: 14673

Re: How to let APDU buffer accept 200 bytes of data

/** * Processes an incoming APDU. * @see APDU * @param apdu the incoming APDU * @exception ISOException with the response bytes per ISO 7816-4 */ public void process(APDU apdu) { byte buffer[] = apdu.getBuffer(); short bytesRead = apdu.setIncomingAndReceive(); short echoOffset = (short)0; while ( b...
JavaCard OS : Disclaimer