diff options
author | Roland McGrath <roland@gnu.org> | 2005-10-05 20:23:05 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-10-05 20:23:05 +0000 |
commit | d91c4c2eb0927c78a8e24869fc0210235009a961 (patch) | |
tree | 32749ef0cf2f0322ec42a67dfabe0ed3d2ea9d65 /crypt | |
parent | 794102b04778e68faa12be00638aebdea6eb99a1 (diff) | |
download | glibc-d91c4c2eb0927c78a8e24869fc0210235009a961.tar.gz glibc-d91c4c2eb0927c78a8e24869fc0210235009a961.tar.xz glibc-d91c4c2eb0927c78a8e24869fc0210235009a961.zip |
* crypt/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): New macros.
Diffstat (limited to 'crypt')
-rw-r--r-- | crypt/md5.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crypt/md5.h b/crypt/md5.h index 35088f29fe..b474a84b8b 100644 --- a/crypt/md5.h +++ b/crypt/md5.h @@ -1,6 +1,7 @@ /* Declaration of functions and data types used for MD5 sum computing library functions. - Copyright (C) 1995-1997,1999,2000,2001,2004 Free Software Foundation, Inc. + Copyright (C) 1995-1997,1999,2000,2001,2004,2005 + 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 @@ -27,6 +28,9 @@ # include <limits.h> #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 |