 6b47bc1af4
			
		
	
	
		6b47bc1af4
		
			
		
	
	
	
	
		
			
			* nfc: MFUL minor cleanup * nfc: Add mechanism to pass event data * nfc: Add NTAG authentication event to emulation * nfc: Rename enum member to align with existing convention * nfc: Add function to determine whether MFUL is fully captured * nfc: Fix emulation of incompletely-read password-protected MFUL * nfc: Add reader password capture scene * nfc: Set default MFUL password input to 0xFFFFFFFF * nfc: Fix MFUL auth counter loading * nfc: Be explicit about using manual auth method when using auto unlock * nfc: Fill in MFUL has_auth when loading file * nfc: Fix MFUL auth success usage, remove unused variable * nfc: Display PWD and PACK in MFUL info if available * nfc: Remove unnecessary include * nfc: Add unlock options to loaded MFUL menu * nfc: Move set default MFUL password. This way it can be edited if needed instead of reentered * nfc: Fix unlock menu not maintaining selection index * nfc: Move captured MFUL auth data from worker to device data * nfc: Attempt to authenticate with default PWD when possible when reading NTAG * nfc: Don't try to auth NTAG on read if we already authed * nfc: Add title for all pages read but failed auth for NTAG auth * nfc: Add faster auth callback patch * lib: Remove scons submodule from index * nfc: Revise MFUL unlock UI flow * nfc: Disallow MFUL unlock with reader if card not read yet. Trying to read first results in either needing to make a new scene or badly jury rigging other scenes, so let's just not do that * f7: Bump API symbols * Format code Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			123 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			2.9 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/helpers/mf_classic_dict.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>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| #define NFC_DEV_NAME_MAX_LEN 22
 | |
| #define NFC_READER_DATA_MAX_SIZE 64
 | |
| #define NFC_DICT_KEY_BATCH_SIZE 50
 | |
| 
 | |
| #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 {
 | |
|     MfClassicDict* dict;
 | |
| } NfcMfClassicDictAttackData;
 | |
| 
 | |
| typedef enum {
 | |
|     NfcReadModeAuto,
 | |
|     NfcReadModeMfClassic,
 | |
|     NfcReadModeMfUltralight,
 | |
|     NfcReadModeMfDesfire,
 | |
|     NfcReadModeEMV,
 | |
|     NfcReadModeNFCA,
 | |
| } NfcReadMode;
 | |
| 
 | |
| typedef struct {
 | |
|     FuriHalNfcDevData nfc_data;
 | |
|     NfcProtocol protocol;
 | |
|     NfcReadMode read_mode;
 | |
|     union {
 | |
|         NfcReaderRequestData reader_data;
 | |
|         NfcMfClassicDictAttackData mf_classic_dict_attack_data;
 | |
|         MfUltralightAuth mf_ul_auth;
 | |
|     };
 | |
|     union {
 | |
|         EmvData emv_data;
 | |
|         MfUltralightData mf_ul_data;
 | |
|         MfClassicData mf_classic_data;
 | |
|         MifareDesfireData mf_df_data;
 | |
|     };
 | |
|     FuriString* parsed_data;
 | |
| } NfcDeviceData;
 | |
| 
 | |
| typedef struct {
 | |
|     Storage* storage;
 | |
|     DialogsApp* dialogs;
 | |
|     NfcDeviceData dev_data;
 | |
|     char dev_name[NFC_DEV_NAME_MAX_LEN + 1];
 | |
|     FuriString* 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);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |