From a334319f6530564d22e775935d9c91663623a1b4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 22 Dec 2004 20:10:10 +0000 Subject: (CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4. --- crypt/Makefile | 8 +++++--- crypt/crypt_util.c | 2 +- crypt/md5.c | 5 ++--- crypt/md5.h | 6 +----- 4 files changed, 9 insertions(+), 12 deletions(-) (limited to 'crypt') diff --git a/crypt/Makefile b/crypt/Makefile index 575221a..af088f1 100644 --- a/crypt/Makefile +++ b/crypt/Makefile @@ -23,15 +23,17 @@ subdir := crypt headers := crypt.h +distribute := md5.h + extra-libs := libcrypt extra-libs-others := $(extra-libs) libcrypt-routines := crypt-entry md5-crypt md5 crypt crypt_util -tests := cert md5test md5c-test +tests = cert md5test md5c-test -distribute := ufc-crypt.h crypt-private.h ufc.c speeds.c README.ufc-crypt \ - Banner md5.h +distribute = ufc-crypt.h crypt-private.h ufc.c speeds.c README.ufc-crypt \ + Banner md5.h include ../Makeconfig diff --git a/crypt/crypt_util.c b/crypt/crypt_util.c index 0db5be7..5467a97 100644 --- a/crypt/crypt_util.c +++ b/crypt/crypt_util.c @@ -902,7 +902,7 @@ __setkey_r(__key, __data) c = c << 1 | *__key++; ktab[i] = c >> 1; } - _ufc_mk_keytab_r((char *) ktab, __data); + _ufc_mk_keytab_r(ktab, __data); } weak_alias (__setkey_r, setkey_r) diff --git a/crypt/md5.c b/crypt/md5.c index 922e7cc..04bce5a 100644 --- a/crypt/md5.c +++ b/crypt/md5.c @@ -1,7 +1,6 @@ /* Functions to compute MD5 message digest of files or memory blocks. according to the definition of MD5 in RFC 1321 from April 1992. - Copyright (C) 1995,1996,1997,1999,2000,2001,2005 - Free Software Foundation, Inc. + Copyright (C) 1995,1996,1997,1999,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -32,7 +31,7 @@ # include #else # ifndef HAVE_MEMCPY -# define memcpy(d, s, n) (bcopy ((s), (d), (n)), (d)) +# define memcpy(d, s, n) bcopy ((s), (d), (n)) # endif #endif diff --git a/crypt/md5.h b/crypt/md5.h index b474a84..35088f2 100644 --- a/crypt/md5.h +++ b/crypt/md5.h @@ -1,7 +1,6 @@ /* Declaration of functions and data types used for MD5 sum computing library functions. - Copyright (C) 1995-1997,1999,2000,2001,2004,2005 - Free Software Foundation, Inc. + Copyright (C) 1995-1997,1999,2000,2001,2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -28,9 +27,6 @@ # include #endif -#define MD5_DIGEST_SIZE 16 -#define MD5_BLOCK_SIZE 64 - /* The following contortions are an attempt to use the C preprocessor to determine an unsigned integral type that is 32 bits wide. An alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but -- cgit v1.1