summaryrefslogtreecommitdiff
path: root/com32/libutil
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:27 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-29 15:10:27 -0700
commit1b6df4e8e7eb7a0e9063d76800622c253eab82fa (patch)
treed4743d9950043d2f40e0ac02ca4a613fd9edebb7 /com32/libutil
parent1615ac6d18cf166ea7bf4214623850b20a21b705 (diff)
downloadsyslinux-1b6df4e8e7eb7a0e9063d76800622c253eab82fa.tar.gz
Run Nindent on com32/libutil/include/md5.h
Automatically reformat com32/libutil/include/md5.h using Nindent. Do this for all files except HDT, gPXE and externally maintained libraries (zlib, tinyjpeg, libpng). Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/libutil')
-rw-r--r--com32/libutil/include/md5.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/com32/libutil/include/md5.h b/com32/libutil/include/md5.h
index 3df01b52..db38c66d 100644
--- a/com32/libutil/include/md5.h
+++ b/com32/libutil/include/md5.h
@@ -32,14 +32,14 @@ documentation and/or software.
/* MD5 context. */
typedef struct {
- uint32_t state[4]; /* state (ABCD) */
- uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */
- unsigned char buffer[64]; /* input buffer */
+ uint32_t state[4]; /* state (ABCD) */
+ uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */
+ unsigned char buffer[64]; /* input buffer */
} MD5_CTX;
void MD5Init(MD5_CTX *);
void MD5Update(MD5_CTX *, const void *, size_t);
-void MD5Final(unsigned char [MD5_SIZE], MD5_CTX *);
+void MD5Final(unsigned char[MD5_SIZE], MD5_CTX *);
char *crypt_md5(const char *, const char *);