summary refs log tree commit diff
path: root/src/liboutils/mem_clr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/liboutils/mem_clr.c')
-rw-r--r--src/liboutils/mem_clr.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/liboutils/mem_clr.c b/src/liboutils/mem_clr.c
deleted file mode 100644
index d8ce0c2..0000000
--- a/src/liboutils/mem_clr.c
+++ /dev/null
@@ -1,11 +0,0 @@
-/* $OpenBSD: mem_clr.c,v 1.3 2014/04/15 23:04:49 tedu 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);
-}