diff options
author | 2015-09-10 15:03:58 +0000 | |
---|---|---|
committer | 2015-09-10 15:03:58 +0000 | |
commit | 1144fe320780edcbe0908cdae823610a83287c7e (patch) | |
tree | ad894b9ab10bb99fadc94db16f427659956bc7d5 /lib/libssl/src | |
parent | Fix a zx_putchar() stupid bug I introduced nine years ago by actually (diff) | |
download | wireguard-openbsd-1144fe320780edcbe0908cdae823610a83287c7e.tar.xz wireguard-openbsd-1144fe320780edcbe0908cdae823610a83287c7e.zip |
Remove pointless comments.
ok "captain obvious"
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/md4/md4_one.c | 4 | ||||
-rw-r--r-- | lib/libssl/src/crypto/md5/md5_one.c | 4 | ||||
-rw-r--r-- | lib/libssl/src/crypto/ripemd/rmd_one.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/libssl/src/crypto/md4/md4_one.c b/lib/libssl/src/crypto/md4/md4_one.c index 911af0514c8..144f131914f 100644 --- a/lib/libssl/src/crypto/md4/md4_one.c +++ b/lib/libssl/src/crypto/md4/md4_one.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md4_one.c,v 1.6 2014/06/12 15:49:29 deraadt Exp $ */ +/* $OpenBSD: md4_one.c,v 1.7 2015/09/10 15:03:58 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -71,7 +71,7 @@ unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md) return NULL; MD4_Update(&c,d,n); MD4_Final(md,&c); - OPENSSL_cleanse(&c,sizeof(c)); /* security consideration */ + OPENSSL_cleanse(&c,sizeof(c)); return(md); } diff --git a/lib/libssl/src/crypto/md5/md5_one.c b/lib/libssl/src/crypto/md5/md5_one.c index 0933d8dd40f..f4cc56adb22 100644 --- a/lib/libssl/src/crypto/md5/md5_one.c +++ b/lib/libssl/src/crypto/md5/md5_one.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5_one.c,v 1.8 2014/06/12 15:49:29 deraadt Exp $ */ +/* $OpenBSD: md5_one.c,v 1.9 2015/09/10 15:03:59 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -71,7 +71,7 @@ unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md) return NULL; MD5_Update(&c,d,n); MD5_Final(md,&c); - OPENSSL_cleanse(&c,sizeof(c)); /* security consideration */ + OPENSSL_cleanse(&c,sizeof(c)); return(md); } diff --git a/lib/libssl/src/crypto/ripemd/rmd_one.c b/lib/libssl/src/crypto/ripemd/rmd_one.c index 672032e8c5c..84b13d53122 100644 --- a/lib/libssl/src/crypto/ripemd/rmd_one.c +++ b/lib/libssl/src/crypto/ripemd/rmd_one.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rmd_one.c,v 1.7 2014/06/12 15:49:30 deraadt Exp $ */ +/* $OpenBSD: rmd_one.c,v 1.8 2015/09/10 15:03:59 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -72,7 +72,7 @@ unsigned char *RIPEMD160(const unsigned char *d, size_t n, return NULL; RIPEMD160_Update(&c,d,n); RIPEMD160_Final(md,&c); - OPENSSL_cleanse(&c,sizeof(c)); /* security consideration */ + OPENSSL_cleanse(&c,sizeof(c)); return(md); } |