mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
fixc CID #405232 - init array
This commit is contained in:
parent
8f20eed914
commit
b3652c28be
1 changed files with 1 additions and 1 deletions
|
@ -702,7 +702,7 @@ static int CmdHFFelicaAuthentication1(const char *Cmd) {
|
|||
PrintAndLogEx(INFO, "Reader challenge (unencrypted): %s", sprint_hex(nonce, 8));
|
||||
|
||||
// Create M1c Challenge with 3DES (3 Keys = 24, 2 Keys = 16)
|
||||
uint8_t master_key[24];
|
||||
uint8_t master_key[24] = {0};
|
||||
mbedtls_des3_context des3_ctx;
|
||||
mbedtls_des3_init(&des3_ctx);
|
||||
|
||||
|
|
Loading…
Reference in a new issue