1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2012 Frederik Möllers
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Commands related to the German electronic Identification Card
9 //-----------------------------------------------------------------------------
14 #include "cmdparser.h"
21 static int CmdHelp(const char *Cmd
);
23 // Perform (part of) the PACE protocol
24 int CmdHFEPACollectPACENonces(const char *Cmd
)
26 // requested nonce size
28 // requested number of Nonces
30 // delay between requests
33 sscanf(Cmd
, "%hhu %u %u", &m
, &n
, &d
);
35 // values are expected to be > 0
39 PrintAndLog("Collecting %u %hhu-byte nonces", n
, m
);
40 PrintAndLog("Start: %u", time(NULL
));
42 for (unsigned int i
= 0; i
< n
; i
++) {
44 UsbCommand c
= {CMD_EPA_PACE_COLLECT_NONCE
, {(int)m
, 0, 0}};
46 UsbCommand
*resp
= WaitForResponse(CMD_ACK
);
48 // check if command failed
49 if (resp
->arg
[0] != 0) {
50 PrintAndLog("Error in step %d, Return code: %d",
54 size_t nonce_length
= resp
->arg
[1];
55 char *nonce
= (char *) malloc(2 * nonce_length
+ 1);
56 for(int j
= 0; j
< nonce_length
; j
++) {
57 snprintf(nonce
+ (2 * j
), 3, "%02X", resp
->d
.asBytes
[j
]);
60 PrintAndLog("Length: %d, Nonce: %s",
67 PrintAndLog("End: %u", time(NULL
));
74 static const command_t CommandTable
[] =
76 {"help", CmdHelp
, 1, "This help"},
77 {"cnonces", CmdHFEPACollectPACENonces
, 0,
78 "<m> <n> <d> Acquire n>0 encrypted PACE nonces of size m>0 with d sec pauses"},
82 int CmdHelp(const char *Cmd
)
84 CmdsHelp(CommandTable
);
88 int CmdHFEPA(const char *Cmd
)
91 while (WaitForResponseTimeout(CMD_ACK
, 500) != NULL
) ;
94 CmdsParse(CommandTable
, Cmd
);