* rfal: add new data exchange function * core: add FURI_BIT to common defines * furi_hal_nfc: add data exchange with custom patiry bits * lib: extend nfc common API * assets: add mf classic dictionary * lib: introduce mifare classic library * nfc: add dictionary reader helper * nfc worker: add worker events, add mifare classic read * nfc: rework scenes with worker events * nfc: add read mifare classic GUI * nfc device: add mifare classic save * nfc: add dictionary open fail scene * nfc: mention resources * stream: fix stream read line * subghz: rework file read with fixed stream_read_line * furi_hal_nfc: decrease communication timeout * nfc: rework keys load from dictionary with file_stream * nfc: add read mifare classic suggestion * nfc: fix mifare classic read view * nfc: fix index size * nfc: add switch to no dictionary found scene * nfc: add mifare classic load * nfc: improve read mifare classic design * mifare_classic: add proxmark3 mention * nfc: format sources * nfc: fix typos, add documentation
		
			
				
	
	
		
			111 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <stdbool.h>
 | 
						|
#include <storage/storage.h>
 | 
						|
#include <dialogs/dialogs.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_FILE_NAME_MAX_LEN 120
 | 
						|
#define NFC_READER_DATA_MAX_SIZE 64
 | 
						|
 | 
						|
#define NFC_APP_FOLDER "/any/nfc"
 | 
						|
#define NFC_APP_EXTENSION ".nfc"
 | 
						|
#define NFC_APP_SHADOW_EXTENSION ".shd"
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    NfcDeviceNfca,
 | 
						|
    NfcDeviceNfcb,
 | 
						|
    NfcDeviceNfcf,
 | 
						|
    NfcDeviceNfcv,
 | 
						|
} NfcDeviceType;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    NfcDeviceProtocolUnknown,
 | 
						|
    NfcDeviceProtocolEMV,
 | 
						|
    NfcDeviceProtocolMifareUl,
 | 
						|
    NfcDeviceProtocolMifareClassic,
 | 
						|
    NfcDeviceProtocolMifareDesfire,
 | 
						|
} NfcProtocol;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    NfcDeviceSaveFormatUid,
 | 
						|
    NfcDeviceSaveFormatBankCard,
 | 
						|
    NfcDeviceSaveFormatMifareUl,
 | 
						|
    NfcDeviceSaveFormatMifareClassic,
 | 
						|
    NfcDeviceSaveFormatMifareDesfire,
 | 
						|
} NfcDeviceSaveFormat;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint8_t uid_len;
 | 
						|
    uint8_t uid[10];
 | 
						|
    uint8_t atqa[2];
 | 
						|
    uint8_t sak;
 | 
						|
    NfcDeviceType device;
 | 
						|
    NfcProtocol protocol;
 | 
						|
} NfcDeviceCommonData;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    char name[32];
 | 
						|
    uint8_t aid[16];
 | 
						|
    uint16_t aid_len;
 | 
						|
    uint8_t number[10];
 | 
						|
    uint8_t number_len;
 | 
						|
    uint8_t exp_mon;
 | 
						|
    uint8_t exp_year;
 | 
						|
    uint16_t country_code;
 | 
						|
    uint16_t currency_code;
 | 
						|
} NfcEmvData;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint8_t data[NFC_READER_DATA_MAX_SIZE];
 | 
						|
    uint16_t size;
 | 
						|
} NfcReaderRequestData;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    NfcDeviceCommonData nfc_data;
 | 
						|
    NfcReaderRequestData reader_data;
 | 
						|
    union {
 | 
						|
        NfcEmvData emv_data;
 | 
						|
        MifareUlData mf_ul_data;
 | 
						|
        MfClassicData mf_classic_data;
 | 
						|
        MifareDesfireData mf_df_data;
 | 
						|
    };
 | 
						|
} NfcDeviceData;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    Storage* storage;
 | 
						|
    DialogsApp* dialogs;
 | 
						|
    NfcDeviceData dev_data;
 | 
						|
    char dev_name[NFC_DEV_NAME_MAX_LEN + 1];
 | 
						|
    char file_name[NFC_FILE_NAME_MAX_LEN];
 | 
						|
    NfcDeviceSaveFormat format;
 | 
						|
    bool shadow_file_exist;
 | 
						|
} 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 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 nfc_device_restore(NfcDevice* dev);
 |