Support wipe(), lockUFUID(), setUIDParameter(),

in latest Iceman repo
Fix a error in keyPattern
Test all R/W functions in Iceman client and Official client
This commit is contained in:
wh201906
2021-02-16 01:17:50 +08:00
parent 24a6e1869b
commit 63f3424871
4 changed files with 65 additions and 33 deletions
+14 -6
View File
@@ -18,10 +18,18 @@ MF_UID_parameterDialog::~MF_UID_parameterDialog()
void MF_UID_parameterDialog::on_buttonBox_accepted()
{
emit sendCMD("hf mf csetuid "
+ ui->UIDLineEdit->text()
+ " "
+ ui->ATQALineEdit->text()
+ " "
+ ui->SAKLineEdit->text());
if(Util::getClientType() == Util::CLIENTTYPE_OFFICIAL)
emit sendCMD("hf mf csetuid "
+ ui->UIDLineEdit->text()
+ " "
+ ui->ATQALineEdit->text()
+ " "
+ ui->SAKLineEdit->text());
else if(Util::getClientType() == Util::CLIENTTYPE_ICEMAN) // same format in v4.9237
emit sendCMD("hf mf csetuid "
+ ui->UIDLineEdit->text()
+ " "
+ ui->ATQALineEdit->text()
+ " "
+ ui->SAKLineEdit->text());
}
+1
View File
@@ -2,6 +2,7 @@
#define MF_UID_PARAMETERDIALOG_H
#include <QDialog>
#include "common/util.h"
namespace Ui
{