summaryrefslogtreecommitdiffstats
path: root/crypto/md4
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/md4')
-rw-r--r--crypto/md4/md4_one.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md4/md4_one.c b/crypto/md4/md4_one.c
index 87a995d38d..53efd430ec 100644
--- a/crypto/md4/md4_one.c
+++ b/crypto/md4/md4_one.c
@@ -89,7 +89,7 @@ unsigned char *MD4(const unsigned char *d, unsigned long n, unsigned char *md)
}
#endif
MD4_Final(md,&c);
- memset(&c,0,sizeof(c)); /* security consideration */
+ OPENSSL_cleanse(&c,sizeof(c)); /* security consideration */
return(md);
}