diff options
author | cvs2svn <admin@example.com> | 2016-07-23 19:31:36 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2016-07-23 19:31:36 +0000 |
commit | 86c49b31af735796dfde37aa29473a30d36367db (patch) | |
tree | e9a354a92a348338fe2b361e2eda703cae23cfab /src/lib/libcrypto/mem_clr.c | |
parent | 19d5fe348e8926bac4521c5807aa64c45b8f7a41 (diff) | |
download | openbsd-OPENBSD_6_0_BASE.tar.gz openbsd-OPENBSD_6_0_BASE.tar.bz2 openbsd-OPENBSD_6_0_BASE.zip |
This commit was manufactured by cvs2git to create tag 'OPENBSD_6_0_BASE'.OPENBSD_6_0_BASE
Diffstat (limited to 'src/lib/libcrypto/mem_clr.c')
-rw-r--r-- | src/lib/libcrypto/mem_clr.c | 11 |
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 | |||
7 | void | ||
8 | OPENSSL_cleanse(void *ptr, size_t len) | ||
9 | { | ||
10 | explicit_bzero(ptr, len); | ||
11 | } | ||