early-access version 1255
This commit is contained in:
11
externals/libressl/crypto/mem_clr.c
vendored
Executable file
11
externals/libressl/crypto/mem_clr.c
vendored
Executable file
@@ -0,0 +1,11 @@
|
||||
/* $OpenBSD: mem_clr.c,v 1.4 2014/06/12 15:49:27 deraadt Exp $ */
|
||||
|
||||
/* Ted Unangst places this file in the public domain. */
|
||||
#include <string.h>
|
||||
#include <openssl/crypto.h>
|
||||
|
||||
void
|
||||
OPENSSL_cleanse(void *ptr, size_t len)
|
||||
{
|
||||
explicit_bzero(ptr, len);
|
||||
}
|
Reference in New Issue
Block a user