Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/wh_server_she.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ static int _LoadKey(whServerContext* server, uint16_t magic, uint16_t req_size,
uint8_t kdfInput[WH_SHE_KEY_SZ * 2];
uint8_t cmacOutput[AES_BLOCK_SIZE];
uint8_t tmpKey[WH_SHE_KEY_SZ];
whNvmMetadata meta[1];
whNvmMetadata meta[1] = {0};
uint32_t she_meta_count = 0;
uint32_t she_meta_flags = 0;
uint32_t* msg_counter_BE;
Expand Down Expand Up @@ -872,7 +872,7 @@ static int _InitRnd(whServerContext* server, uint16_t magic, uint16_t req_size,
uint8_t kdfInput[WH_SHE_KEY_SZ * 2];
uint8_t cmacOutput[AES_BLOCK_SIZE];
uint8_t tmpKey[WH_SHE_KEY_SZ];
whNvmMetadata meta[1];
whNvmMetadata meta[1] = {0};
whMessageShe_InitRngResponse resp;

/* check that init hasn't already been called since startup */
Expand Down Expand Up @@ -1017,7 +1017,7 @@ static int _ExtendSeed(whServerContext* server, uint16_t magic,
int ret = 0;
uint32_t keySz;
uint8_t kdfInput[WH_SHE_KEY_SZ * 2];
whNvmMetadata meta[1];
whNvmMetadata meta[1] = {0};
whMessageShe_ExtendSeedRequest req;
whMessageShe_ExtendSeedResponse resp;

Expand Down