Only allow custom length for 0x04 instruction

This commit is contained in:
Manuel Thalmann 2023-10-13 01:35:01 +02:00
parent 995ba68bdf
commit e95ded2edf

View file

@ -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);