aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-17 12:07:03 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-17 12:07:03 +0000
commit54c4cfe0dc509818898d272918217dead7516160 (patch)
tree57b224aa329f27984f91da4673faa247913c45ba /libbb
parent277dc7287f4f65e1505d75509c6d845116144a1c (diff)
downloadbusybox-w32-54c4cfe0dc509818898d272918217dead7516160.tar.gz
busybox-w32-54c4cfe0dc509818898d272918217dead7516160.tar.bz2
busybox-w32-54c4cfe0dc509818898d272918217dead7516160.zip
- make CONFIG_MD5SUM_SIZE_VS_SPEED configurable via menuconfig.
- use shorter boilerplate. git-svn-id: svn://busybox.net/trunk/busybox@13383 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/hash_fd.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/libbb/hash_fd.c b/libbb/hash_fd.c
index 5f12259b3..3445a25a0 100644
--- a/libbb/hash_fd.c
+++ b/libbb/hash_fd.c
@@ -5,19 +5,7 @@
5 * Copyright (C) 2003 Glenn L. McGrath 5 * Copyright (C) 2003 Glenn L. McGrath
6 * Copyright (C) 2003 Erik Andersen 6 * Copyright (C) 2003 Erik Andersen
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */ 9 */
22 10
23#include <byteswap.h> 11#include <byteswap.h>
@@ -271,7 +259,11 @@ static void sha1_end(unsigned char hval[], struct sha1_ctx_t *ctx)
271 * 3 (smallest) 5.1 4912 259 * 3 (smallest) 5.1 4912
272 */ 260 */
273 261
262# if CONFIG_MD5SUM_SIZE_VS_SPEED < 0 || CONFIG_MD5SUM_SIZE_VS_SPEED > 3
274# define MD5SUM_SIZE_VS_SPEED 2 263# define MD5SUM_SIZE_VS_SPEED 2
264# else
265# define MD5SUM_SIZE_VS_SPEED CONFIG_MD5SUM_SIZE_VS_SPEED
266# endif
275 267
276/* Handle endian-ness */ 268/* Handle endian-ness */
277# if __BYTE_ORDER == __LITTLE_ENDIAN 269# if __BYTE_ORDER == __LITTLE_ENDIAN