Add MFKey to firmware

This commit is contained in:
noproto
2024-10-08 22:42:30 -04:00
parent 3375bba18d
commit 619445da4b
17 changed files with 1747 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#define PLUGIN_APP_ID "mfkey"
#define PLUGIN_API_VERSION 1
typedef struct {
const char* name;
bool (*napi_mf_classic_mfkey32_nonces_check_presence)();
bool (*napi_mf_classic_nested_nonces_check_presence)();
MfClassicNonceArray* (
*napi_mf_classic_nonce_array_alloc)(KeysDict*, bool, KeysDict*, ProgramState*);
void (*napi_mf_classic_nonce_array_free)(MfClassicNonceArray*);
} MfkeyPlugin;