mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
missing defines
This commit is contained in:
parent
06a1627a95
commit
aa35a8a1a6
2 changed files with 7 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
||||||
#include "protocols.h"
|
#include "protocols.h"
|
||||||
#include "cmdhficlass.h"
|
#include "cmdhficlass.h"
|
||||||
#include "mifare/mifaredefault.h" // mifare consts
|
#include "mifare/mifaredefault.h" // mifare consts
|
||||||
|
#include "cmdhfseos.h"
|
||||||
|
|
||||||
enum MifareAuthSeq {
|
enum MifareAuthSeq {
|
||||||
masNone,
|
masNone,
|
||||||
|
|
|
@ -21,6 +21,12 @@
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
|
#define SEOS_ENCRYPTION_2K3DES 0x02
|
||||||
|
#define SEOS_ENCRYPTION_3K3DES 0x03
|
||||||
|
#define SEOS_ENCRYPTION_AES 0x09
|
||||||
|
|
||||||
|
#define SEOS_HASHING_SHA1 0x06
|
||||||
|
#define SEOS_HASHING_SHA256 0x07
|
||||||
int infoSeos(bool verbose);
|
int infoSeos(bool verbose);
|
||||||
int CmdHFSeos(const char *Cmd);
|
int CmdHFSeos(const char *Cmd);
|
||||||
int seos_kdf(bool encryption, uint8_t *masterKey, uint8_t keyslot,
|
int seos_kdf(bool encryption, uint8_t *masterKey, uint8_t keyslot,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue