[PATCH] wintrust: use enhanced crypto provider in VerifyImageHash

Vijay Kiran Kamuju infyquest at gmail.com
Thu Apr 18 08:10:46 CDT 2019


From: Marko Friedemann <marko at friedemann.email>

Softpub VerifyImageHash uses the default crypto provider and fails for
  certificates using SHA256 et al. with NTE_BAD_ALGID (80090008).
Fixes startup cert error with SWTOR launcher as-of 2017-08-01.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47034
From: Marko Friedemann <marko at friedemann.email>
Signed-off-by: Vijay Kiran Kamuju <infyquest at gmail.com>
---
 dlls/wintrust/softpub.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/wintrust/softpub.c b/dlls/wintrust/softpub.c
index 1273a58f9dc..475f55a7507 100644
--- a/dlls/wintrust/softpub.c
+++ b/dlls/wintrust/softpub.c
@@ -328,7 +328,7 @@ static DWORD SOFTPUB_VerifyImageHash(CRYPT_PROVIDER_DATA *data, HANDLE file)
 
     if (!prov)
     {
-        if (!CryptAcquireContextW(&prov, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
+        if (!CryptAcquireContextW(&prov, NULL, MS_ENH_RSA_AES_PROV_W, PROV_RSA_AES, CRYPT_VERIFYCONTEXT))
             return GetLastError();
         release_prov = TRUE;
     }
-- 
2.17.0




More information about the wine-devel mailing list