2010-02-21 08:12:52 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2012-09-18 21:53:17 +08:00
|
|
|
// (c) 2012 Roel Verdult
|
2010-02-21 08:12:52 +08:00
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
2012-09-18 21:53:17 +08:00
|
|
|
// Hitag2 type prototyping
|
2010-02-21 08:12:52 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2016-03-05 02:06:47 +08:00
|
|
|
// HitagS added
|
|
|
|
//-----------------------------------------------------------------------------
|
2009-08-31 08:37:29 +08:00
|
|
|
|
2012-09-18 21:53:17 +08:00
|
|
|
#ifndef _HITAG2_H_
|
|
|
|
#define _HITAG2_H_
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2017-07-30 15:17:48 +08:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define PACKED
|
|
|
|
#else
|
|
|
|
#define PACKED __attribute__((packed))
|
|
|
|
#endif
|
|
|
|
|
2012-09-18 21:53:17 +08:00
|
|
|
typedef enum {
|
2016-03-05 02:06:47 +08:00
|
|
|
RHTSF_CHALLENGE = 01,
|
|
|
|
RHTSF_KEY = 02,
|
|
|
|
WHTSF_CHALLENGE = 03,
|
|
|
|
WHTSF_KEY = 04,
|
2012-10-16 23:18:13 +08:00
|
|
|
RHT2F_PASSWORD = 21,
|
|
|
|
RHT2F_AUTHENTICATE = 22,
|
2015-01-27 15:34:48 +08:00
|
|
|
RHT2F_CRYPTO = 23,
|
2017-07-30 15:17:48 +08:00
|
|
|
WHT2F_CRYPTO = 24,
|
2015-01-27 15:34:48 +08:00
|
|
|
RHT2F_TEST_AUTH_ATTEMPTS = 25,
|
2017-07-30 15:17:48 +08:00
|
|
|
RHT2F_UID_ONLY = 26,
|
2012-09-18 21:53:17 +08:00
|
|
|
} hitag_function;
|
2009-08-31 08:37:29 +08:00
|
|
|
|
2012-09-18 21:53:17 +08:00
|
|
|
typedef struct {
|
|
|
|
byte_t password[4];
|
|
|
|
} PACKED rht2d_password;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
byte_t NrAr[8];
|
2016-03-05 02:06:47 +08:00
|
|
|
byte_t data[4];
|
2012-09-18 21:53:17 +08:00
|
|
|
} PACKED rht2d_authenticate;
|
|
|
|
|
2012-10-16 23:18:13 +08:00
|
|
|
typedef struct {
|
2016-03-05 02:06:47 +08:00
|
|
|
byte_t key[6];
|
|
|
|
byte_t data[4];
|
2012-10-16 23:18:13 +08:00
|
|
|
} PACKED rht2d_crypto;
|
|
|
|
|
2012-09-18 21:53:17 +08:00
|
|
|
typedef union {
|
|
|
|
rht2d_password pwd;
|
|
|
|
rht2d_authenticate auth;
|
2015-01-27 15:34:48 +08:00
|
|
|
rht2d_crypto crypto;
|
2012-09-18 21:53:17 +08:00
|
|
|
} hitag_data;
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
#endif
|