mirror of
https://github.com/azahar-emu/ext-libressl-portable
synced 2025-11-07 15:40:08 +01:00
14 lines
188 B
C
14 lines
188 B
C
/*
|
|
* Public domain.
|
|
* Win32 explicit_bzero compatibility shim.
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <string.h>
|
|
|
|
void
|
|
explicit_bzero(void *buf, size_t len)
|
|
{
|
|
SecureZeroMemory(buf, len);
|
|
}
|