mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed undefined BCRYPT_RNG_ALG_HANDLE when compiling against older WinRT
This commit is contained in:
parent
3b0461e229
commit
3e872a5016
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user