Use DBOP to check for left button on C200v2 like we are supposed to instead of right...
[kugel-rb.git] / tools / fwpatcher / md5.h
blob71fa395548a0a65a8bd28ab38b7c9095a6443586
1 #ifndef _MD5_H
2 #define _MD5_H
4 #ifndef uint8
5 #define uint8 unsigned char
6 #endif
8 #ifndef uint32
9 #define uint32 unsigned long int
10 #endif
12 typedef struct
14 uint32 total[2];
15 uint32 state[4];
16 uint8 buffer[64];
18 md5_context;
20 void md5_starts( md5_context *ctx );
21 void md5_update( md5_context *ctx, uint8 *input, uint32 length );
22 void md5_finish( md5_context *ctx, uint8 digest[16] );
24 #endif /* md5.h */