comparison src/md5/md5.h @ 10:26e34ae9a3e3

changed indention and line wrapping to a more consistent style
author meillo@marmaro.de
date Mon, 27 Oct 2008 16:23:10 +0100
parents 08114f7dcc23
children 10da50168dab
comparison
equal deleted inserted replaced
9:31cc8a89cb74 10:26e34ae9a3e3
23 documentation and/or software. 23 documentation and/or software.
24 */ 24 */
25 25
26 /* MD5 context. */ 26 /* MD5 context. */
27 typedef struct { 27 typedef struct {
28 UINT4 state[4]; /* state (ABCD) */ 28 UINT4 state[4]; /* state (ABCD) */
29 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ 29 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
30 unsigned char buffer[64]; /* input buffer */ 30 unsigned char buffer[64]; /* input buffer */
31 } MD5_CTX; 31 } MD5_CTX;
32 32
33 void MD5Init PROTO_LIST ((MD5_CTX *)); 33 void MD5Init PROTO_LIST((MD5_CTX *));
34 void MD5Update PROTO_LIST 34 void MD5Update PROTO_LIST((MD5_CTX *, unsigned char *, unsigned int));
35 ((MD5_CTX *, unsigned char *, unsigned int)); 35 void MD5Final PROTO_LIST((unsigned char[16], MD5_CTX *));
36 void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));