https://bugs.winehq.org/show_bug.cgi?id=44699
--- Comment #4 from Martell martellmalone@gmail.com --- Created attachment 60716 --> https://bugs.winehq.org/attachment.cgi?id=60716 CryptAcquireContextW PROV_RSA_FULL CRYPT_VERIFYCONTEXT TEST
``` #include <stdio.h> #include <windows.h> #include <wincrypt.h> // -ladvapi32
int main(int argc, char* argv[]) { HCRYPTPROV provider; if (!CryptAcquireContextW(&provider, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) { printf("failed world\n"); return -1; } printf("successful world\n"); return 0; }
compiled with `x86_64-w64-mingw32-clang test-crypto.c -o test-crypto-c-x86_64.exe -ladvapi32`