mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 15:39:07 +00:00
Cast size_t to DWORD on Windows
This commit is contained in:
parent
06955dfc21
commit
ea19211d21
@ -90,7 +90,7 @@ static int randombytes_win32_randombytes(void *buf, const size_t n) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp = CryptGenRandom(ctx, n, (BYTE *)buf);
|
tmp = CryptGenRandom(ctx, (DWORD)n, (BYTE *)buf);
|
||||||
if (tmp == FALSE) {
|
if (tmp == FALSE) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user