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

by gyylxz
Fri Jun 15, 2018 5:27 am
Forum: Questions & Answers
Topic: T=0 protocol, How to use the correct ins value in the apdu command?
Replies: 1
Views: 4962

T=0 protocol, How to use the correct ins value in the apdu command?

T=0 protocol, How to use the correct ins value in the apdu command?
by gyylxz
Fri Jun 15, 2018 5:12 am
Forum: Questions & Answers
Topic: how to judge that the class byte of APDU command is valid?
Replies: 4
Views: 7932

Re: how to judge that the class byte of APDU command is valid?

Filter by the following function:
int8_t apdu_is_valid_cla(void)
{
return (int8_t)((((g_apdu_info.cla) & 0xE0) != 0x20) && ((g_apdu_info.cla) != 0xFF));
}
by gyylxz
Fri Jun 15, 2018 5:11 am
Forum: Questions & Answers
Topic: how to judge that the class byte of APDU command is valid?
Replies: 4
Views: 7932

Re: how to judge that the class byte of APDU command is valid?

Filter by the following function:
int8_t apdu_is_valid_cla(void)
{
return (int8_t)((((g_apdu_info.cla) & 0xE0) != 0x20) && ((g_apdu_info.cla) != 0xFF));
}
JavaCard OS : Disclaimer