diff options
author | 2016-09-03 11:33:34 +0000 | |
---|---|---|
committer | 2016-09-03 11:33:34 +0000 | |
commit | 8204a9859e29f943f9d45fa3c5bacf005da87a21 (patch) | |
tree | 3d72799b17122728ed1ce817d171df956c52a633 /lib/libssl/src/crypto/mem_clr.c | |
parent | Remove NULL pointer checks before calls to free(). (diff) | |
download | wireguard-openbsd-8204a9859e29f943f9d45fa3c5bacf005da87a21.tar.xz wireguard-openbsd-8204a9859e29f943f9d45fa3c5bacf005da87a21.zip |
Remove the libssl/src directory
Diffstat (limited to 'lib/libssl/src/crypto/mem_clr.c')
-rw-r--r-- | lib/libssl/src/crypto/mem_clr.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/libssl/src/crypto/mem_clr.c b/lib/libssl/src/crypto/mem_clr.c deleted file mode 100644 index 9ee5e65a2e6..00000000000 --- a/lib/libssl/src/crypto/mem_clr.c +++ /dev/null @@ -1,11 +0,0 @@ -/* $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); -} |