early-access version 1255
This commit is contained in:
13
externals/libressl/crypto/compat/explicit_bzero_win.c
vendored
Executable file
13
externals/libressl/crypto/compat/explicit_bzero_win.c
vendored
Executable file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Public domain.
|
||||
* Win32 explicit_bzero compatibility shim.
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <string.h>
|
||||
|
||||
void
|
||||
explicit_bzero(void *buf, size_t len)
|
||||
{
|
||||
SecureZeroMemory(buf, len);
|
||||
}
|
Reference in New Issue
Block a user