projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b9e8c7
)
Cleanse the MD context properly when done adding or getting random data.
author
Richard Levitte
<levitte@openssl.org>
Wed, 21 May 2003 14:35:04 +0000
(14:35 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 21 May 2003 14:35:04 +0000
(14:35 +0000)
PR: 619
crypto/rand/md_rand.c
patch
|
blob
|
history
diff --git
a/crypto/rand/md_rand.c
b/crypto/rand/md_rand.c
index 5df32b4fe6a8b99d5729512d05477e5fed8137be..334e0bbfb1ad7b28eb96a14ab17f7ebf520e2dea 100644
(file)
--- a/
crypto/rand/md_rand.c
+++ b/
crypto/rand/md_rand.c
@@
-292,7
+292,7
@@
static void ssleay_rand_add(const void *buf, int num, double add)
st_idx=0;
}
}
-
memset
((char *)&m,0,sizeof(m));
+
OPENSSL_cleanse
((char *)&m,0,sizeof(m));
if (!do_not_lock) CRYPTO_w_lock(CRYPTO_LOCK_RAND);
/* Don't just copy back local_md into md -- this could mean that
@@
-493,7
+493,7
@@
static int ssleay_rand_bytes(unsigned char *buf, int num)
MD_Final(md,&m);
CRYPTO_w_unlock(CRYPTO_LOCK_RAND);
-
memset
(&m,0,sizeof(m));
+
OPENSSL_cleanse
(&m,0,sizeof(m));
if (ok)
return(1);
else