comparison src/xs_md5.h @ 684:4bf845090a25

Indentation cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 May 2008 02:24:53 +0300
parents b0743dc9165d
children
comparison
equal deleted inserted replaced
683:3cc9b8e23d88 684:4bf845090a25
9 9
10 /* Typedefs 10 /* Typedefs
11 */ 11 */
12 typedef struct md5_state_s { 12 typedef struct md5_state_s {
13 guint32 bits[2]; /* message length in bits, lsw first */ 13 guint32 bits[2]; /* message length in bits, lsw first */
14 guint32 buf[4]; /* digest buffer */ 14 guint32 buf[4]; /* digest buffer */
15 guint8 in[64]; /* accumulate block */ 15 guint8 in[64]; /* accumulate block */
16 } xs_md5state_t; 16 } xs_md5state_t;
17 17
18 #define XS_MD5HASH_LENGTH (16) 18 #define XS_MD5HASH_LENGTH (16)
19 #define XS_MD5HASH_LENGTH_CH (XS_MD5HASH_LENGTH * 2) 19 #define XS_MD5HASH_LENGTH_CH (XS_MD5HASH_LENGTH * 2)
20 20
21 typedef guint8 xs_md5hash_t[XS_MD5HASH_LENGTH]; 21 typedef guint8 xs_md5hash_t[XS_MD5HASH_LENGTH];
22 22
23 23