mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-06-04 15:11:50 +00:00
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// See LICENSE.txt for the text of the license.
|
|
//-----------------------------------------------------------------------------
|
|
// High frequency MIFARE Plus commands
|
|
//-----------------------------------------------------------------------------
|
|
#ifndef CMDHFMFP_H__
|
|
#define CMDHFMFP_H__
|
|
|
|
#include "common.h"
|
|
#include "mifare/mifare4.h"
|
|
|
|
typedef struct mfp_key_item {
|
|
uint8_t a[16];
|
|
uint8_t b[16];
|
|
} mfp_key_item_t;
|
|
|
|
typedef struct mfp_keys {
|
|
uint8_t success;
|
|
mfp_key_item_t *keys;
|
|
} mfp_keys_t;
|
|
|
|
int CmdHFMFP(const char *Cmd);
|
|
int CmdHFMFPNDEFRead(const char *Cmd);
|
|
int mfp_data_crypt(mf4Session_t *mf4session, uint8_t *dati, uint8_t *dato, bool rev);
|
|
#endif
|