1853359d78
* nfc: start nfc over rpc * nfc: add detect reader state * nfc: add reader analyzer * nfc: rework reader analyzer * reader_analyzer: print collected nonces to debug * reader analyzer: add save on SD card * reader_analyzer: separate mfkey related part to different file * mfkey32: add logic for collecting parameters * nfc: rework pcap with reader analyzer * nfc: add logger for reader * nfc: clean up * nfc: add detect reader view * nfc: add detect reader and mfkey nonces scenes * nfc: add mfkey comlplete scene * nfc: add new assets * nfc: fix gui * nfc: fix iso14443-4 UID emulation * nfc: add no sd card notification * nfc: fix grammar Co-authored-by: あく <alleteam@gmail.com>
28 lines
621 B
C
28 lines
621 B
C
#pragma once
|
|
|
|
#include <lib/nfc/protocols/mifare_classic.h>
|
|
#include <m-string.h>
|
|
|
|
typedef struct Mfkey32 Mfkey32;
|
|
|
|
typedef enum {
|
|
Mfkey32EventParamCollected,
|
|
} Mfkey32Event;
|
|
|
|
typedef void (*Mfkey32ParseDataCallback)(Mfkey32Event event, void* context);
|
|
|
|
Mfkey32* mfkey32_alloc(uint32_t cuid);
|
|
|
|
void mfkey32_free(Mfkey32* instance);
|
|
|
|
void mfkey32_process_data(
|
|
Mfkey32* instance,
|
|
uint8_t* data,
|
|
uint16_t len,
|
|
bool reader_to_tag,
|
|
bool crc_dropped);
|
|
|
|
void mfkey32_set_callback(Mfkey32* instance, Mfkey32ParseDataCallback callback, void* context);
|
|
|
|
uint16_t mfkey32_get_auth_sectors(string_t string);
|