diff options
author | Viktor Szakats <commit@vsz.me> | 2020-03-17 23:06:05 +0000 |
---|---|---|
committer | Viktor Szakats <commit@vsz.me> | 2020-03-17 23:08:02 +0000 |
commit | 7284061361e32d6f4d6308bf41d751601d101ba2 (patch) | |
tree | 3525264e37d45147347f11ba918a484e85960b35 /lib/md5.c | |
parent | ab9dc5ae2a86e42bb087986587e68cefdf76531d (diff) | |
download | curl-7284061361e32d6f4d6308bf41d751601d101ba2.tar.gz |
windows: suppress UI in all CryptAcquireContext() calls
Ref: https://docs.microsoft.com/windows/win32/api/wincrypt/nf-wincrypt-cryptacquirecontexta#parameters
Reviewed-by: Marc Hörsken
Closes https://github.com/curl/curl/pull/5088
Diffstat (limited to 'lib/md5.c')
-rw-r--r-- | lib/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -186,8 +186,8 @@ typedef struct { static void MD5_Init(MD5_CTX *ctx) { - if(CryptAcquireContext(&ctx->hCryptProv, NULL, NULL, - PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) { + if(CryptAcquireContext(&ctx->hCryptProv, NULL, NULL, PROV_RSA_FULL, + CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) { CryptCreateHash(ctx->hCryptProv, CALG_MD5, 0, 0, &ctx->hHash); } } |