From: iceman1001 Date: Sun, 26 Oct 2014 20:30:29 +0000 (+0100) Subject: BUG: fixed a bug with the initialization of IV in cmdhfmfu.c CmdHF14AMfucAuth X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/db297e69e116369d7f5cdadcff69a0425b4e61de BUG: fixed a bug with the initialization of IV in cmdhfmfu.c CmdHF14AMfucAuth --- diff --git a/client/cmdhfmfu.c b/client/cmdhfmfu.c index 72eb8895..afe54bb4 100644 --- a/client/cmdhfmfu.c +++ b/client/cmdhfmfu.c @@ -471,10 +471,13 @@ int CmdHF14AMfucAuth(const char *Cmd){ unsigned char RndARndB[16] = {0x00}; uint8_t key[16] = {0x00}; DES_cblock RndA, RndB; - DES_cblock iv[8] = {0x00}; + DES_cblock iv; DES_key_schedule ks1,ks2; DES_cblock key1,key2; + // + memset(iv, 0, 8); + if (strlen(Cmd)<1) { PrintAndLog("Usage: hf mfu auth k "); PrintAndLog(" sample: hf mfu auth k 0");