From 8d1e9c1f5dcbc5b4687c247fe654b3f63ea44649 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 27 May 2024 15:19:22 +0200 Subject: [PATCH] adapt response struct for hitag2 so be large enough to handle 256bytes for cryptostream --- include/hitag.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hitag.h b/include/hitag.h index 06a8de9cf..0f70d43fa 100644 --- a/include/hitag.h +++ b/include/hitag.h @@ -59,7 +59,7 @@ typedef struct { typedef struct { int status; - uint8_t data[48]; + uint8_t data[256]; } PACKED lf_hitag_crack_response_t; //---------------------------------------------------------