repo.or.cz
/
unleashed
/
tickless.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge commit 'dfc115332c94a2f62058ac7f2bce7631fbd20b3d'
[unleashed/tickless.git]
/
lib
/
libcrypto
/
mem_clr.c
blob
9ee5e65a2e6700f5f67b9e8971d1d8c28c6bd64b
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
}