mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
small fix
This commit is contained in:
parent
6c4289b874
commit
39d0137178
1 changed files with 8 additions and 2 deletions
|
@ -246,7 +246,13 @@ int CmdHFFidoRegister(const char *cmd) {
|
||||||
|
|
||||||
// check ANSI X9.62 format ECDSA signature (on P-256)
|
// check ANSI X9.62 format ECDSA signature (on P-256)
|
||||||
|
|
||||||
PrintAndLog("\nauth command: hf fido auth %s %s %s %s", paramsPlain?"-p":"", sprint_hex_inrow(&buf[67], keyHandleLen), cdata, adata);
|
PrintAndLog("\nauth command: ");
|
||||||
|
printf("hf fido auth %s %s", paramsPlain?"-p":"", sprint_hex_inrow(&buf[67], keyHandleLen));
|
||||||
|
if(chlen || applen)
|
||||||
|
printf(" %s", paramsPlain?(char *)cdata:sprint_hex_inrow(cdata, 32));
|
||||||
|
if(applen)
|
||||||
|
printf(" %s", paramsPlain?(char *)adata:sprint_hex_inrow(adata, 32));
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
DropField();
|
DropField();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue