X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/48ece4a750b41536ba2c56dfd9a088b192976c82..2ba37081ec005c623baf69accca493662cbaa4c3:/include/mifare.h

diff --git a/include/mifare.h b/include/mifare.h
index ad86886d..b821f32b 100644
--- a/include/mifare.h
+++ b/include/mifare.h
@@ -34,7 +34,22 @@ typedef enum ISO14A_COMMAND {
 	ISO14A_APPEND_CRC =			(1 << 5),
 	ISO14A_SET_TIMEOUT =		(1 << 6),
 	ISO14A_NO_SELECT =			(1 << 7),
-	ISO14A_TOPAZMODE =			(1 << 8)
+	ISO14A_TOPAZMODE =			(1 << 8),
+	ISO14A_NO_RATS =			(1 << 9),
+	ISO14A_CLEAR_TRACE =		(1 << 10)
 } iso14a_command_t;
 
+typedef struct {
+	uint32_t cuid;
+	uint8_t  sector;
+	uint8_t  keytype;
+	uint32_t nonce;
+	uint32_t ar;
+	uint32_t nr;
+	uint32_t at;
+	uint32_t nonce2;
+	uint32_t ar2;
+	uint32_t nr2;
+} nonces_t;
+
 #endif // _MIFARE_H_