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) {
|
||||
response = AuthorName;
|
||||
length = (short)response.length;
|
||||
} else {
|
||||
response = storage;
|
||||
}
|
||||
|
||||
if (length > response.length) {
|
||||
length = (short) response.length;
|
||||
if (length > response.length) {
|
||||
length = (short) response.length;
|
||||
}
|
||||
}
|
||||
|
||||
apdu.setOutgoingLength(length);
|
||||
|
|
Loading…
Reference in a new issue