From 8ded860d0b73bf90203bf5e0297ba82837340fd1 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 13 Feb 2010 19:55:53 +0100 Subject: Change source code indentation (indent -kr -i8 -hnl, mainly) --- src/md5.h | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) (limited to 'src/md5.h') diff --git a/src/md5.h b/src/md5.h index 0193f5d..fd03011 100644 --- a/src/md5.h +++ b/src/md5.h @@ -51,44 +51,42 @@ * ARCH_IS_BIG_ENDIAN. */ -typedef unsigned char md5_byte_t; /* 8-bit byte */ -typedef unsigned int md5_word_t; /* 32-bit word */ +typedef unsigned char md5_byte_t; /* 8-bit byte */ +typedef unsigned int md5_word_t; /* 32-bit word */ /* Define the state of the MD5 Algorithm. */ typedef struct md5_state_s { - md5_word_t count[2]; /* message length in bits, lsw first */ - md5_word_t abcd[4]; /* digest buffer */ - md5_byte_t buf[64]; /* accumulate block */ + md5_word_t count[2]; /* message length in bits, lsw first */ + md5_word_t abcd[4]; /* digest buffer */ + md5_byte_t buf[64]; /* accumulate block */ } md5_state_t; #ifdef __cplusplus -extern "C" -{ +extern "C" { #endif /* Initialize the algorithm. */ #ifdef P1 -void md5_init(P1(md5_state_t *pms)); + void md5_init(P1(md5_state_t * pms)); #else -void md5_init(md5_state_t *pms); + void md5_init(md5_state_t * pms); #endif /* Append a string to the message. */ #ifdef P3 -void md5_append(P3(md5_state_t *pms, const md5_byte_t *data, int nbytes)); + void md5_append(P3(md5_state_t * pms, const md5_byte_t * data, int nbytes)); #else -void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); + void md5_append(md5_state_t * pms, const md5_byte_t * data, int nbytes); #endif /* Finish the message and return the digest. */ #ifdef P2 -void md5_finish(P2(md5_state_t *pms, md5_byte_t digest[16])); + void md5_finish(P2(md5_state_t * pms, md5_byte_t digest[16])); #else -void md5_finish(md5_state_t *pms, md5_byte_t digest[16]); + void md5_finish(md5_state_t * pms, md5_byte_t digest[16]); #endif #ifdef __cplusplus -} /* end extern "C" */ +} /* end extern "C" */ #endif - -#endif /* md5_INCLUDED */ +#endif /* md5_INCLUDED */ -- cgit v1.2.3