X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/f71f4deb8f8f1e932c81f3e62e6ab67012e07b33..c2ca50419d360dc80196fba5a4e39c33ef4d1a97:/include/hitag2.h diff --git a/include/hitag2.h b/include/hitag2.h index ca15d81d..66770d98 100644 --- a/include/hitag2.h +++ b/include/hitag2.h @@ -7,15 +7,28 @@ //----------------------------------------------------------------------------- // Hitag2 type prototyping //----------------------------------------------------------------------------- +// HitagS added +//----------------------------------------------------------------------------- #ifndef _HITAG2_H_ #define _HITAG2_H_ +#ifdef _MSC_VER +#define PACKED +#else +#define PACKED __attribute__((packed)) +#endif + typedef enum { + RHTSF_CHALLENGE = 01, + RHTSF_KEY = 02, + WHTSF_CHALLENGE = 03, + WHTSF_KEY = 04, RHT2F_PASSWORD = 21, RHT2F_AUTHENTICATE = 22, RHT2F_CRYPTO = 23, RHT2F_TEST_AUTH_ATTEMPTS = 25, + RHT2F_UID_ONLY = 26 } hitag_function; typedef struct { @@ -24,10 +37,12 @@ typedef struct { typedef struct { byte_t NrAr[8]; + byte_t data[4]; } PACKED rht2d_authenticate; typedef struct { - byte_t key[4]; + byte_t key[6]; + byte_t data[4]; } PACKED rht2d_crypto; typedef union {