]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/mifarehost.h
CHG: 'hf iclass decrypt' - adjusted the loops, to only decrypt Application 1. ...
[proxmark3-svn] / client / mifarehost.h
index 2355017cab9b03a4fdafbd0e2631f13a39940d6d..754cc4839eb5e4a367c7ef85c1309149d245ecc9 100644 (file)
 #include <stdio.h>\r
 #include <stdlib.h>\r
 #include <unistd.h>\r
+#include <string.h>\r
+#include <pthread.h>\r
+\r
+#include "proxmark3.h" // time_t\r
+//#include "radixsort.h"\r
 #include "common.h"\r
 #include "cmdmain.h"\r
 #include "ui.h"\r
 #include "data.h"\r
 #include "util.h"\r
-#include "nonce2key/nonce2key.h"\r
+//#include "nonce2key/nonce2key.h"\r
 #include "nonce2key/crapto1.h"\r
 #include "iso14443crc.h"\r
 #include "protocols.h"\r
 \r
-#define MEM_CHUNK               1000000\r
 #define NESTED_SECTOR_RETRY     10\r
 \r
 // mifare tracer flags\r
 #define TRACE_READ_DATA                0x04\r
 #define TRACE_WRITE_OK                 0x05\r
 #define TRACE_WRITE_DATA               0x06\r
-\r
 #define TRACE_ERROR                            0xFF\r
 \r
+typedef struct {\r
+               union {\r
+                       struct Crypto1State *slhead;\r
+                       uint64_t *keyhead;\r
+               } head;\r
+               union {\r
+                       struct Crypto1State *sltail;\r
+                       uint64_t *keytail;\r
+               } tail;\r
+               uint32_t len;\r
+               uint32_t uid;\r
+               uint32_t blockNo;\r
+               uint32_t keyType;\r
+               uint32_t nt;\r
+               uint32_t ks1;\r
+} StateList_t;\r
+       \r
 typedef struct {\r
        uint64_t Key[2];\r
        int foundKey[2];\r
 } sector;\r
  \r
-int compar_int(const void * a, const void * b);\r
+extern int compar_int(const void * a, const void * b);\r
 extern char logHexFileName[FILE_PATH_SIZE];\r
 \r
 int mfnested(uint8_t blockNo, uint8_t keyType, uint8_t * key, uint8_t trgBlockNo, uint8_t trgKeyType, uint8_t * ResultKeys, bool calibrate);\r
 int mfCheckKeys (uint8_t blockNo, uint8_t keyType, bool clear_trace, uint8_t keycnt, uint8_t * keyBlock, uint64_t * key);\r
+int mfKeyBrute(uint8_t blockNo, uint8_t keyType, uint8_t *key, uint64_t *resultkey);\r
 \r
 int mfEmlGetMem(uint8_t *data, int blockNum, int blocksCount);\r
 int mfEmlSetMem(uint8_t *data, int blockNum, int blocksCount);\r
Impressum, Datenschutz