2009-10-12 16:52:26 +02:00
|
|
|
/**
|
|
|
|
* Public platform independent Near Field Communication (NFC) library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009, Roel Verdult
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @file mifaretag.h
|
|
|
|
* @brief
|
|
|
|
*/
|
2009-04-29 14:47:41 +02:00
|
|
|
|
|
|
|
#ifndef _LIBNFC_MIFARE_TAG_H_
|
|
|
|
#define _LIBNFC_MIFARE_TAG_H_
|
2009-02-12 13:39:05 +01:00
|
|
|
|
2009-04-29 14:47:41 +02:00
|
|
|
typedef struct {
|
2009-07-16 14:09:06 +02:00
|
|
|
byte_t abtUID[4];
|
|
|
|
byte_t btBCC;
|
|
|
|
byte_t btUnknown;
|
|
|
|
byte_t abtATQA[2];
|
|
|
|
byte_t abtUnknown[8];
|
2009-04-29 14:47:41 +02:00
|
|
|
} mifare_block_manufacturer;
|
2009-02-12 13:39:05 +01:00
|
|
|
|
2009-04-29 14:47:41 +02:00
|
|
|
typedef struct {
|
2009-07-16 14:09:06 +02:00
|
|
|
byte_t abtData[16];
|
2009-04-29 14:47:41 +02:00
|
|
|
} mifare_block_data;
|
2009-02-12 13:39:05 +01:00
|
|
|
|
2009-04-29 14:47:41 +02:00
|
|
|
typedef struct {
|
2009-07-16 14:09:06 +02:00
|
|
|
byte_t abtKeyA[6];
|
|
|
|
byte_t abtAccessBits[4];
|
|
|
|
byte_t abtKeyB[6];
|
2009-04-29 14:47:41 +02:00
|
|
|
} mifare_block_trailer;
|
2009-02-12 13:39:05 +01:00
|
|
|
|
2009-04-29 14:47:41 +02:00
|
|
|
typedef union {
|
|
|
|
mifare_block_manufacturer mbm;
|
|
|
|
mifare_block_data mbd;
|
|
|
|
mifare_block_trailer mbt;
|
|
|
|
} mifare_block;
|
2009-02-12 13:39:05 +01:00
|
|
|
|
2009-04-29 14:47:41 +02:00
|
|
|
typedef struct {
|
|
|
|
mifare_block amb[256];
|
|
|
|
} mifare_tag;
|
2009-02-12 13:39:05 +01:00
|
|
|
|
2009-04-29 14:47:41 +02:00
|
|
|
#endif // _LIBNFC_MIFARE_TAG_H_
|