From 32f1e4b51ce1c660b26b835c551cbf08e2690891 Mon Sep 17 00:00:00 2001 From: "Aaron Tulino (Aaronjamt)" Date: Sun, 21 Dec 2025 03:55:28 -0700 Subject: [PATCH] [hf seos] Allow short SIO --- client/src/cmdhfseos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhfseos.c b/client/src/cmdhfseos.c index 0a9d94e26..915b131ae 100644 --- a/client/src/cmdhfseos.c +++ b/client/src/cmdhfseos.c @@ -349,7 +349,7 @@ static int seos_get_data(uint8_t *rndICC, uint8_t *rndIFD, uint8_t *diversified_ int getDataSize = 0; // ------------------- Cryptogram Response ------------------- - if (resplen >= 2 && response[0] == 0x85 && response[1] >= 0x40) { + if (resplen >= 2 && response[0] == 0x85) { uint8_t cryptogram_length = response[1]; uint8_t cryptogram[cryptogram_length]; uint8_t decrypted[cryptogram_length];