From ee0a2659da24b4b7543f52647fb2d8cbbd12408c Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Mon, 21 Jan 2019 00:42:53 +0100 Subject: Windows driver: remove volumes master keys from CRYPTO_INFO since they are not needed after their key schedule is created --- src/Common/Dlgcode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Common/Dlgcode.c') diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index 448ee1ab..4480f426 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -5724,7 +5724,7 @@ static BOOL PerformBenchmark(HWND hBenchDlg, HWND hwndDlg) if (!EAInit (ci->ea, ci->master_keydata, ci->ks)) { ci->mode = FIRST_MODE_OF_OPERATION_ID; - if (EAInitMode (ci)) + if (EAInitMode (ci, ci->k2)) { int i; @@ -5745,7 +5745,7 @@ static BOOL PerformBenchmark(HWND hBenchDlg, HWND hwndDlg) goto counter_error; ci->mode = FIRST_MODE_OF_OPERATION_ID; - if (!EAInitMode (ci)) + if (!EAInitMode (ci, ci->k2)) goto counter_error; if (QueryPerformanceCounter (&performanceCountStart) == 0) @@ -6931,7 +6931,7 @@ CipherTestDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) } memcpy (&ci->k2, secondaryKey, sizeof (secondaryKey)); - if (!EAInitMode (ci)) + if (!EAInitMode (ci, ci->k2)) { crypto_close (ci); return 1; -- cgit v1.2.3