You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Proxmark3GUI/module/mifare.h

43 lines
767 B
C

5 years ago
#ifndef MIFARE_H
#define MIFARE_H
#include "common/util.h"
5 years ago
#include <QObject>
class Mifare : public QObject
{
Q_OBJECT
public:
explicit Mifare(Util *addr,QObject *parent = nullptr);
5 years ago
enum ProcessingState
{
NONE,
DATA,
KEY,
};
enum InputType
{
FROM_RDBL,
FROM_RDSC,
FROM_CHK,
FROM_NESTED,
};
void setProcessingState(ProcessingState st);
void setInputType(InputType tp);
public slots:
void processData(const QString str);
void processKey(const QString str);
signals:
private:
Util* util;
5 years ago
bool isProcessingData=false;
bool isProcessingKey=false;
InputType inputType;
QStringList dataList;
QStringList keyList[2];
};
#endif // MIFARE_H