 9c59bcd776
			
		
	
	
		9c59bcd776
		
			
		
	
	
	
	
		
			
			* nfc: add new read scene * lib: refactore nfc library * mifare desfire: add read card fuction * lib nfc: add auto read worker * nfc: add supported cards * nfc: add mifare classic read success scene * nfc: add troyka support * submodule: update protobuf * nfc: mifare classic keys cache * nfc: rework mifare classic key cache * Correct spelling * nfc: add user dictionary * nfc: introduce block read map in fff * nfc: rework dict attack * nfc: improve dict attack * nfc: rework mifare classic format * nfc: rework MFC read with Reader * nfc: add gui for MFC read success scene * nfc: fix dict attack view gui * nfc: add retry and exit confirm scenes * nfc: add retry and exit scenes navigation * nfc: check user dictionary * nfc: remove unused scenes * nfc: rename functions in nfc worker * nfc: rename mf_classic_dict_attack -> dict_attack * nfc: change scenes names * nfc: remove scene tick events * nfc: rework dict calls with buffer streams * nfc: fix notifications * nfc: fix mf desfire navigation * nfc: remove notification from mf classic read success * nfc: fix read sectors calculation * nfc: add fallback for unknown card * nfc: show file name while emulating * nfc: fix build * nfc: fix memory leak * nfc: fix desfire read * nfc: add no dict found navigation * nfc: add read views * nfc: update card fix * nfc: fix access bytes save * nfc: add exit and retry confirm to mf ultralight read success * nfc: introduce detect reader * nfc: change record open arg to macros * nfc: fix start from archive Co-authored-by: Astra <astra@astrra.space> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			95 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| #include <storage/storage.h>
 | |
| #include <dialogs/dialogs.h>
 | |
| 
 | |
| #include <furi_hal_nfc.h>
 | |
| #include <lib/nfc/protocols/emv.h>
 | |
| #include <lib/nfc/protocols/mifare_ultralight.h>
 | |
| #include <lib/nfc/protocols/mifare_classic.h>
 | |
| #include <lib/nfc/protocols/mifare_desfire.h>
 | |
| 
 | |
| #define NFC_DEV_NAME_MAX_LEN 22
 | |
| #define NFC_READER_DATA_MAX_SIZE 64
 | |
| 
 | |
| #define NFC_APP_FOLDER ANY_PATH("nfc")
 | |
| #define NFC_APP_EXTENSION ".nfc"
 | |
| #define NFC_APP_SHADOW_EXTENSION ".shd"
 | |
| 
 | |
| typedef void (*NfcLoadingCallback)(void* context, bool state);
 | |
| 
 | |
| typedef enum {
 | |
|     NfcDeviceProtocolUnknown,
 | |
|     NfcDeviceProtocolEMV,
 | |
|     NfcDeviceProtocolMifareUl,
 | |
|     NfcDeviceProtocolMifareClassic,
 | |
|     NfcDeviceProtocolMifareDesfire,
 | |
| } NfcProtocol;
 | |
| 
 | |
| typedef enum {
 | |
|     NfcDeviceSaveFormatUid,
 | |
|     NfcDeviceSaveFormatBankCard,
 | |
|     NfcDeviceSaveFormatMifareUl,
 | |
|     NfcDeviceSaveFormatMifareClassic,
 | |
|     NfcDeviceSaveFormatMifareDesfire,
 | |
| } NfcDeviceSaveFormat;
 | |
| 
 | |
| typedef struct {
 | |
|     uint8_t data[NFC_READER_DATA_MAX_SIZE];
 | |
|     uint16_t size;
 | |
| } NfcReaderRequestData;
 | |
| 
 | |
| typedef struct {
 | |
|     FuriHalNfcDevData nfc_data;
 | |
|     NfcProtocol protocol;
 | |
|     NfcReaderRequestData reader_data;
 | |
|     union {
 | |
|         EmvData emv_data;
 | |
|         MfUltralightData mf_ul_data;
 | |
|         MfClassicData mf_classic_data;
 | |
|         MifareDesfireData mf_df_data;
 | |
|     };
 | |
|     string_t parsed_data;
 | |
| } NfcDeviceData;
 | |
| 
 | |
| typedef struct {
 | |
|     Storage* storage;
 | |
|     DialogsApp* dialogs;
 | |
|     NfcDeviceData dev_data;
 | |
|     char dev_name[NFC_DEV_NAME_MAX_LEN + 1];
 | |
|     string_t load_path;
 | |
|     NfcDeviceSaveFormat format;
 | |
|     bool shadow_file_exist;
 | |
| 
 | |
|     NfcLoadingCallback loading_cb;
 | |
|     void* loading_cb_ctx;
 | |
| } NfcDevice;
 | |
| 
 | |
| NfcDevice* nfc_device_alloc();
 | |
| 
 | |
| void nfc_device_free(NfcDevice* nfc_dev);
 | |
| 
 | |
| void nfc_device_set_name(NfcDevice* dev, const char* name);
 | |
| 
 | |
| bool nfc_device_save(NfcDevice* dev, const char* dev_name);
 | |
| 
 | |
| bool nfc_device_save_shadow(NfcDevice* dev, const char* dev_name);
 | |
| 
 | |
| bool nfc_device_load(NfcDevice* dev, const char* file_path, bool show_dialog);
 | |
| 
 | |
| bool nfc_device_load_key_cache(NfcDevice* dev);
 | |
| 
 | |
| bool nfc_file_select(NfcDevice* dev);
 | |
| 
 | |
| void nfc_device_data_clear(NfcDeviceData* dev);
 | |
| 
 | |
| void nfc_device_clear(NfcDevice* dev);
 | |
| 
 | |
| bool nfc_device_delete(NfcDevice* dev, bool use_load_path);
 | |
| 
 | |
| bool nfc_device_restore(NfcDevice* dev, bool use_load_path);
 | |
| 
 | |
| void nfc_device_set_loading_callback(NfcDevice* dev, NfcLoadingCallback callback, void* context);
 |