Fixed undefined BCRYPT_RNG_ALG_HANDLE when compiling against older WinRT

This commit is contained in:
Nathan Moinvaziri 2023-04-12 16:13:52 -07:00
parent 3b0461e229
commit 3e872a5016

View File

@ -27,7 +27,7 @@ int32_t mz_crypt_rand(uint8_t *buf, int32_t size) {
status = BCryptOpenAlgorithmProvider(&provider, BCRYPT_RNG_ALGORITHM, NULL, 0);
if (NT_SUCCESS(status)) {
status = BCryptGenRandom(BCRYPT_RNG_ALG_HANDLE, buf, size, 0);
status = BCryptGenRandom(provider, buf, size, 0);
BCryptCloseAlgorithmProvider(provider, 0);
}
if (NT_SUCCESS(status))