added test command

This commit is contained in:
merlokk 2017-12-04 19:13:25 +02:00
commit 00bb9106df

View file

@ -779,6 +779,11 @@ int CmdHFEMVExec(const char *cmd) {
return 0;
}
int CmdHFEMVTest(const char *cmd) {
return 0;
}
int CmdHelp(const char *Cmd);
static command_t CommandTable[] = {
{"help", CmdHelp, 1, "This help"},
@ -786,6 +791,7 @@ static command_t CommandTable[] = {
{"pse", CmdHFEMVPPSE, 0, "Execute PPSE. It selects 2PAY.SYS.DDF01 or 1PAY.SYS.DDF01 directory."},
{"search", CmdHFEMVSearch, 0, "Try to select all applets from applets list and print installed applets."},
{"select", CmdHFEMVSelect, 0, "Select applet."},
{"test", CmdHFEMVTest, 0, "Crypto logic test."},
{NULL, NULL, 0, NULL}
};