summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/md4
diff options
context:
space:
mode:
authormiod <>2014-07-10 09:01:04 +0000
committermiod <>2014-07-10 09:01:04 +0000
commit9fc983c5b20933c41a33c98b41358075beeefe42 (patch)
tree57c0a92fa6c453387695fb76f1c1f006643ffda0 /src/lib/libcrypto/md4
parente166fd2863721cf76df04cb700440ba75c838213 (diff)
downloadopenbsd-9fc983c5b20933c41a33c98b41358075beeefe42.tar.gz
openbsd-9fc983c5b20933c41a33c98b41358075beeefe42.tar.bz2
openbsd-9fc983c5b20933c41a33c98b41358075beeefe42.zip
Remove bogus preprocessor statements trying to pick the largest integer
type for BF_LONG, MD[45]_LONG and SHA_LONG. First, the preprocessor symbols they check for a 64-bit system is __ILP64__ which no sane system provides; second, on the platforms which have assembler code to speed things up, the assembler code assumes a 32-bit type will be used.
Diffstat (limited to 'src/lib/libcrypto/md4')
-rw-r--r--src/lib/libcrypto/md4/md4.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libcrypto/md4/md4.h b/src/lib/libcrypto/md4/md4.h
index f8ee0c1fea..bbdac701f6 100644
--- a/src/lib/libcrypto/md4/md4.h
+++ b/src/lib/libcrypto/md4/md4.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: md4.h,v 1.11 2014/06/12 15:49:29 deraadt Exp $ */ 1/* $OpenBSD: md4.h,v 1.12 2014/07/10 09:01:04 miod 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 *
@@ -78,14 +78,7 @@ extern "C" {
78 * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 78 * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
79 */ 79 */
80 80
81#if defined(__LP32__)
82#define MD4_LONG unsigned long
83#elif defined(__ILP64__)
84#define MD4_LONG unsigned long
85#define MD4_LONG_LOG2 3
86#else
87#define MD4_LONG unsigned int 81#define MD4_LONG unsigned int
88#endif
89 82
90#define MD4_CBLOCK 64 83#define MD4_CBLOCK 64
91#define MD4_LBLOCK (MD4_CBLOCK/4) 84#define MD4_LBLOCK (MD4_CBLOCK/4)