print values VMK

This commit is contained in:
elenago 2017-09-14 20:01:43 +02:00
parent 2b559aac44
commit 52ef56d5b2

View File

@ -130,15 +130,15 @@ int readData(char * encryptedImagePath, unsigned char ** salt, unsigned char **
fillBuffer(encryptedImage, *encryptedVMK, VMK_SIZE);
fprintf(stdout, "Nonce:\n");
print_hex(nonce, NONCE_SIZE);
print_hex(*nonce, NONCE_SIZE);
fprintf(stdout, "\n");
fprintf(stdout, "MAC:\n");
print_hex(mac, MAC_SIZE);
print_hex(*mac, MAC_SIZE);
fprintf(stdout, "\n");
fprintf(stdout, "VMK:\n");
print_hex(encryptedVMK, VMK_SIZE);
print_hex(*encryptedVMK, VMK_SIZE);
fprintf(stdout, "\n");
break;
}