下面,您会看到一个java卡程序,当它收到APDU Command = 8000000000
(its source)时会返回“Hello Word”
package helloWorldPackage;
import javacard.framework.APDU;
import javacard.framework.Applet;
import javacard.framework.ISO7816;
import javacard.framework.ISOException;
import javacard.framework.Util;
public class HelloWorldApplet extends Applet
{
private static final byte[] helloWorld = {(byte)'H',(byte)'e',(byte)'l',(byte)'l',(byte)'o',(byte)' ',(byte)'W',(byte)'o',(byte)'r',(byte)'l',(byte)'d',};
private static final byte HW_CLA = (byte)0x80;
private static final byte HW_INS = (byte)0x00;
public static void install(byte[] bArray, short bOffset, byte bLength)
{
new HelloWorldApplet().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
}
public void process(APDU apdu)
{
if (selectingApplet())
{
return;
}
byte[] buffer = apdu.getBuffer();
byte CLA = (byte) (buffer[ISO7816.OFFSET_CLA] & 0xFF);
byte INS = (byte) (buffer[ISO7816.OFFSET_INS] & 0xFF);
if (CLA != HW_CLA)
{
ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
}
switch ( INS )
{
case HW_INS:
getHelloWorld( apdu );
break;
default:
ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
}
}
private void getHelloWorld( APDU apdu)
{
byte[] buffer = apdu.getBuffer();
short length = (short) helloWorld.length;
Util.arrayCopyNonAtomic(helloWorld, (short)0, buffer, (short)0, (short) length);
apdu.setOutgoingAndSend((short)0, length);
}
}
我明白了,但我无法理解为什么程序员在行中使用了&0XFF
:
byte CLA = (byte) (buffer[ISO7816.OFFSET_CLA] & 0xFF);
byte INS = (byte) (buffer[ISO7816.OFFSET_INS] & 0xFF);
为什么他通常不使用以下行?
byte CLA = (byte) (buffer[ISO7816.OFFSET_CLA]);
byte INS = (byte) (buffer[ISO7816.OFFSET_INS]);
同样在线:
ew HelloWorldApplet().register(bArray, (short) (bOffset + 1), bArray[bOffset]);
+1
是什么意思?
答案 0 :(得分:5)
虽然我们看不到作者的意图,但行:
byte CLA = (byte) (buffer[ISO7816.OFFSET_CLA] & 0xFF);
100%相当于:
byte CLA = buffer[ISO7816.OFFSET_CLA];
Java经常使用整数作为操作的结果,并且由于Java Card通常不支持int
值,因此通常需要强制转换为byte
或short
。我只能猜测& 0xFF
和强制转换存在是因为过度热衷于摆脱中间int
值。让Java支持无符号字节也是一种不好的尝试。
register
方法需要实例AID。该AID在全局平台INSTALL for INSTALL
期间给出的用户参数范围内,但前面是一个包含AID长度的字节(介于5和15之间)。因此+ 1
将跳过该长度字节 - 而后者又出现在register
方法的最后一个参数:bArray[bOffset]
。