Only allow custom length for 0x04
instruction
This commit is contained in:
parent
995ba68bdf
commit
e95ded2edf
|
@ -65,12 +65,13 @@ public class MyApplet extends Applet {
|
||||||
|
|
||||||
if (instruction == 0x00) {
|
if (instruction == 0x00) {
|
||||||
response = AuthorName;
|
response = AuthorName;
|
||||||
|
length = (short)response.length;
|
||||||
} else {
|
} else {
|
||||||
response = storage;
|
response = storage;
|
||||||
}
|
|
||||||
|
|
||||||
if (length > response.length) {
|
if (length > response.length) {
|
||||||
length = (short) response.length;
|
length = (short) response.length;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
apdu.setOutgoingLength(length);
|
apdu.setOutgoingLength(length);
|
||||||
|
|
Loading…
Reference in a new issue