 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>
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <furi_hal_nfc.h>
 | |
| 
 | |
| #define MAX_APDU_LEN 255
 | |
| 
 | |
| #define EMV_TAG_APP_TEMPLATE 0x61
 | |
| #define EMV_TAG_AID 0x4F
 | |
| #define EMV_TAG_PRIORITY 0x87
 | |
| #define EMV_TAG_PDOL 0x9F38
 | |
| #define EMV_TAG_CARD_NAME 0x50
 | |
| #define EMV_TAG_FCI 0xBF0C
 | |
| #define EMV_TAG_LOG_CTRL 0x9F4D
 | |
| #define EMV_TAG_CARD_NUM 0x57
 | |
| #define EMV_TAG_PAN 0x5A
 | |
| #define EMV_TAG_AFL 0x94
 | |
| #define EMV_TAG_EXP_DATE 0x5F24
 | |
| #define EMV_TAG_COUNTRY_CODE 0x5F28
 | |
| #define EMV_TAG_CURRENCY_CODE 0x9F42
 | |
| #define EMV_TAG_CARDHOLDER_NAME 0x5F20
 | |
| 
 | |
| 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;
 | |
| } EmvData;
 | |
| 
 | |
| typedef struct {
 | |
|     uint16_t tag;
 | |
|     uint8_t data[];
 | |
| } PDOLValue;
 | |
| 
 | |
| typedef struct {
 | |
|     uint8_t size;
 | |
|     uint8_t data[MAX_APDU_LEN];
 | |
| } APDU;
 | |
| 
 | |
| typedef struct {
 | |
|     uint8_t priority;
 | |
|     uint8_t aid[16];
 | |
|     uint8_t aid_len;
 | |
|     char name[32];
 | |
|     bool name_found;
 | |
|     uint8_t card_number[10];
 | |
|     uint8_t card_number_len;
 | |
|     uint8_t exp_month;
 | |
|     uint8_t exp_year;
 | |
|     uint16_t country_code;
 | |
|     uint16_t currency_code;
 | |
|     APDU pdol;
 | |
|     APDU afl;
 | |
| } EmvApplication;
 | |
| 
 | |
| /** Read bank card data
 | |
|  * @note Search EMV Application, start it, try to read AID, PAN, card name,
 | |
|  * expiration date, currency and country codes
 | |
|  *
 | |
|  * @param tx_rx     FuriHalNfcTxRxContext instance
 | |
|  * @param emv_app   EmvApplication instance
 | |
|  * 
 | |
|  * @return true on success
 | |
|  */
 | |
| bool emv_read_bank_card(FuriHalNfcTxRxContext* tx_rx, EmvApplication* emv_app);
 | |
| 
 | |
| /** Search for EMV Application
 | |
|  *
 | |
|  * @param tx_rx     FuriHalNfcTxRxContext instance
 | |
|  * @param emv_app   EmvApplication instance
 | |
|  *
 | |
|  * @return true on success
 | |
|  */
 | |
| bool emv_search_application(FuriHalNfcTxRxContext* tx_rx, EmvApplication* emv_app);
 | |
| 
 | |
| /** Emulate bank card
 | |
|  * @note Answer to application selection and PDOL
 | |
|  *
 | |
|  * @param tx_rx     FuriHalNfcTxRxContext instance
 | |
|  *
 | |
|  * @return true on success
 | |
|  */
 | |
| bool emv_card_emulation(FuriHalNfcTxRxContext* tx_rx);
 |