summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/mem_clr.c
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2015-08-02 21:54:23 +0000
committercvs2svn <admin@example.com>2015-08-02 21:54:23 +0000
commit67fcb4ef3942fb3a0f1e18f8ebbe7464120d485a (patch)
tree5609c82060f75c53af0a7641d9b33a88574876cd /src/lib/libcrypto/mem_clr.c
parented40f444ba01bcae1d8540f9c26d79537ab5baf2 (diff)
downloadopenbsd-libressl-v2.2.2.tar.gz
openbsd-libressl-v2.2.2.tar.bz2
openbsd-libressl-v2.2.2.zip
This commit was manufactured by cvs2git to create branch 'OPENBSD_5_8'.libressl-v2.2.2
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/mem_clr.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/libcrypto/mem_clr.c b/src/lib/libcrypto/mem_clr.c
deleted file mode 100644
index 9ee5e65a2e..0000000000
--- a/src/lib/libcrypto/mem_clr.c
+++ /dev/null
@@ -1,11 +0,0 @@
1/* $OpenBSD: mem_clr.c,v 1.4 2014/06/12 15:49:27 deraadt Exp $ */
2
3/* Ted Unangst places this file in the public domain. */
4#include <string.h>
5#include <openssl/crypto.h>
6
7void
8OPENSSL_cleanse(void *ptr, size_t len)
9{
10 explicit_bzero(ptr, len);
11}