1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2019 merlokk
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Proxmark3 RDV40 AID list library
9 //-----------------------------------------------------------------------------
20 int PrintAIDDescription(json_t
*xroot
, char *aid
, bool verbose
);
21 int PrintAIDDescriptionBuf(json_t
*root
, uint8_t *aid
, size_t aidlen
, bool verbose
);
22 json_t
*AIDSearchInit(bool verbose
);
23 json_t
*AIDSearchGetElm(json_t
*root
, size_t elmindx
);
24 bool AIDGetFromElm(json_t
*data
, uint8_t *aid
, size_t aidmaxlen
, int *aidlen
);
25 int AIDSearchFree(json_t
*root
);