https://bugs.winehq.org/show_bug.cgi?id=44699
--- Comment #3 from Martell martellmalone@gmail.com --- I was able to reproduce with this minimal example
``` #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; } ```
I'm wondering if this could have anything to do with my host? I am running this under alpine linux which uses musl libc. https://github.com/alpinelinux/aports/blob/master/community/wine/APKBUILD