1
0
Fork 0

Removes debugging print statements

This commit is contained in:
Shawn Nock 2016-08-26 12:48:39 -04:00
parent d3a0f92b84
commit 455a9eb749
1 changed files with 0 additions and 4 deletions

4
ckdf.c
View File

@ -41,12 +41,8 @@ void ckdf_expand(uint8_t *okm, uint8_t *prk, uint8_t *info,
memcpy(initial, info, info_len);
cmac_aes128(t, initial, info_len+1, 16);
} else {
block_print_bytes("IN", t, sizeof(t));
cmac_aes128(t, t, sizeof(t), 16);
block_print_bytes("OUT", t, sizeof(t));
}
printf("T%d: ", i+1);
block_print(NULL, t);
if (i == num_blocks - 1 && remainder) {
memcpy(okm+16*i, t, remainder);
} else {