summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/md4/md4_one.c
diff options
context:
space:
mode:
authorjsing <>2015-09-10 15:03:59 +0000
committerjsing <>2015-09-10 15:03:59 +0000
commit28bbecce8aeca1f98c741aba10dd4d35e7e6d147 (patch)
tree2253eb218ceca019f5248db52200899793dbd5b3 /src/lib/libcrypto/md4/md4_one.c
parent18cdf03962910233188c8a93fa79a99b36a52cb6 (diff)
downloadopenbsd-28bbecce8aeca1f98c741aba10dd4d35e7e6d147.tar.gz
openbsd-28bbecce8aeca1f98c741aba10dd4d35e7e6d147.tar.bz2
openbsd-28bbecce8aeca1f98c741aba10dd4d35e7e6d147.zip
Remove pointless comments.
ok "captain obvious"
Diffstat (limited to 'src/lib/libcrypto/md4/md4_one.c')
-rw-r--r--src/lib/libcrypto/md4/md4_one.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/md4/md4_one.c b/src/lib/libcrypto/md4/md4_one.c
index 911af0514c..144f131914 100644
--- a/src/lib/libcrypto/md4/md4_one.c
+++ b/src/lib/libcrypto/md4/md4_one.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: md4_one.c,v 1.6 2014/06/12 15:49:29 deraadt Exp $ */ 1/* $OpenBSD: md4_one.c,v 1.7 2015/09/10 15:03:58 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -71,7 +71,7 @@ unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md)
71 return NULL; 71 return NULL;
72 MD4_Update(&c,d,n); 72 MD4_Update(&c,d,n);
73 MD4_Final(md,&c); 73 MD4_Final(md,&c);
74 OPENSSL_cleanse(&c,sizeof(c)); /* security consideration */ 74 OPENSSL_cleanse(&c,sizeof(c));
75 return(md); 75 return(md);
76 } 76 }
77 77