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

36 lines
628 B
C

5 years ago
#ifndef MIFARE_H
#define MIFARE_H
#include "common/util.h"
#include "ui_mainwindow.h"
#include "ui/mf_attack_hardnesteddialog.h"
5 years ago
#include <QObject>
#include <QString>
5 years ago
class Mifare : public QObject
{
Q_OBJECT
public:
explicit Mifare(Ui::MainWindow *ui, Util *addr, QObject *parent = nullptr);
5 years ago
bool isKeyValid(const QString key);
void info();
void chk();
void nested();
void hardnested();
void sniff();
void list();
void read();
void readAll();
void write();
void writeAll();
5 years ago
public slots:
signals:
private:
Ui::MainWindow *ui;
Util* util;
5 years ago
};
#endif // MIFARE_H