mirror of https://github.com/wh201906/Proxmark3GUI
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.
35 lines
954 B
C++
35 lines
954 B
C++
#include "mf_attack_hardnesteddialog.h"
|
|
#include "ui_mf_attack_hardnesteddialog.h"
|
|
|
|
MF_Attack_hardnestedDialog::MF_Attack_hardnestedDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::MF_Attack_hardnestedDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
for(int i = 0; i < 64; i++)
|
|
{
|
|
ui->knownKeySectorBox->addItem(QString::number(i));
|
|
ui->targetKeySectorBox->addItem(QString::number(i));
|
|
}
|
|
|
|
}
|
|
|
|
MF_Attack_hardnestedDialog::~MF_Attack_hardnestedDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void MF_Attack_hardnestedDialog::on_buttonBox_accepted()
|
|
{
|
|
emit sendCMD("hf mf hardnested "
|
|
+ ui->knownKeySectorBox->currentText()
|
|
+ " "
|
|
+ ui->knownKeyTypeBox->currentText()
|
|
+ " "
|
|
+ ui->knownKeyBox->text()
|
|
+ " "
|
|
+ ui->targetKeySectorBox->currentText()
|
|
+ " "
|
|
+ ui->targetKeyTypeBox->currentText());
|
|
}
|