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.

Xor calculation

JCIDE related questions and answers.

Moderators: product, kuafu

deepanshsinghal
Posts: 44
Joined: Thu Apr 06, 2017 8:01 am
Points :460
Contact:

Xor calculation

Post by deepanshsinghal » Fri Aug 04, 2017 8:21 am

Hi everyone,

i am calculating XOR like this,

Code: Select all

   public static byte[] xor(byte[] arqc, byte[] responseCode) {

      byte[] c = new byte[arqc.length];
      for (short i = 0; i < arqc.length; i++) {
         c[i] = (byte) (arqc[i] ^ responseCode[i]);
      }

      return c;
   }


is there any other way to calculate XOR because i think it might be the reason of giving the response "6F 00"

Regards,
Deepansh

User avatar
UNKNwYSHSA
Posts: 630
Joined: Thu May 21, 2015 4:05 am
Points :3053
Contact:

Re: Xor calculation

Post by UNKNwYSHSA » Sat Aug 05, 2017 1:11 pm

Please check the length of the responseCode, it's length shall greater or equal to the length of arqc!
sense and simplicity

Post Reply Previous topicNext topic

Who is online

Users browsing this forum: No registered users and 7 guests

JavaCard OS : Disclaimer