mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 12:41:49 +08:00
16 lines
574 B
C
16 lines
574 B
C
//-----------------------------------------------------------------------------
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// AID DESFire functions
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _AIDDESFIRE_H_
|
|
#define _AIDDESFIRE_H_
|
|
|
|
#include "common.h"
|
|
|
|
int AIDDFDecodeAndPrint(uint8_t aid[3]);
|
|
|
|
#endif // _AIDDESFIRE_H_
|