 b2132b2ec7
			
		
	
	
		b2132b2ec7
		
			
		
	
	
	
	
		
			
			* Nfc: async pcap worker * nfc: add pcap save to classic emulation Co-authored-by: gornekich <n.gorbadey@gmail.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "nfc_worker.h"
 | |
| #include "nfc_i.h"
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <lib/toolbox/stream/file_stream.h>
 | |
| 
 | |
| #include <lib/nfc_protocols/nfc_util.h>
 | |
| #include <lib/nfc_protocols/emv.h>
 | |
| #include <lib/nfc_protocols/mifare_common.h>
 | |
| #include <lib/nfc_protocols/mifare_ultralight.h>
 | |
| #include <lib/nfc_protocols/mifare_classic.h>
 | |
| #include <lib/nfc_protocols/mifare_desfire.h>
 | |
| #include <lib/nfc_protocols/nfca.h>
 | |
| 
 | |
| #include "helpers/nfc_mf_classic_dict.h"
 | |
| #include "helpers/nfc_debug_pcap.h"
 | |
| 
 | |
| struct NfcWorker {
 | |
|     FuriThread* thread;
 | |
|     Storage* storage;
 | |
|     Stream* dict_stream;
 | |
| 
 | |
|     NfcDeviceData* dev_data;
 | |
| 
 | |
|     NfcWorkerCallback callback;
 | |
|     void* context;
 | |
| 
 | |
|     NfcWorkerState state;
 | |
| 
 | |
|     NfcDebugPcapWorker* debug_pcap_worker;
 | |
| };
 | |
| 
 | |
| void nfc_worker_change_state(NfcWorker* nfc_worker, NfcWorkerState state);
 | |
| 
 | |
| int32_t nfc_worker_task(void* context);
 | |
| 
 | |
| void nfc_worker_read_emv_app(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_read_emv(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_emulate_apdu(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_detect(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_emulate(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_read_mifare_ultralight(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_mifare_classic_dict_attack(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_read_mifare_desfire(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_emulate_mifare_ul(NfcWorker* nfc_worker);
 | |
| 
 | |
| void nfc_worker_emulate_mifare_classic(NfcWorker* nfc_worker);
 |