textual
[RRG-proxmark3.git] / client / src / cmdflashmem.h
blob5a8f6eebc4925224b973f4087895e93995ff8c3a
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2018 iceman
3 //
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
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Proxmark3 RDV40 Flash memory commands
9 //-----------------------------------------------------------------------------
11 #ifndef CMDFLASHMEM_H__
12 #define CMDFLASHMEM_H__
14 #include "common.h"
15 #include "pmflash.h" // rdv40validation_t
17 typedef enum {
18 DICTIONARY_NONE = 0,
19 DICTIONARY_MIFARE,
20 DICTIONARY_T55XX,
21 DICTIONARY_ICLASS
22 } Dictionary_t;
24 int CmdFlashMem(const char *Cmd);
25 int rdv4_get_signature(rdv40_validation_t *out);
26 int rdv4_validate(rdv40_validation_t *mem);
27 #endif