From 128af38ec4972b6cded29b410f4bd3667b84031b Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Mon, 22 Sep 2025 23:37:36 +0200 Subject: [PATCH] small bug in hf 15 originality check --- client/src/cmdhf15.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhf15.c b/client/src/cmdhf15.c index d27c8d049..1bbdfb951 100644 --- a/client/src/cmdhf15.c +++ b/client/src/cmdhf15.c @@ -285,7 +285,7 @@ static int nxp_15693_print_signature(uint8_t *uid, uint8_t *signature) { // try with sha256 and reversed uid / signature index = originality_check_verify_ex(uid, 8, signature, 32, PK_15, true, true); if (index >= 0) { - reason = 3; + reason = 4; } } }