2 * Copyright (c) 2004-2005 Sergey Lyubka <valenok@gmail.com>
5 * "THE BEER-WARE LICENSE" (Revision 42):
6 * Sergey Lyubka wrote this file. As long as you retain this notice you
7 * can do whatever you want with this stuff. If we meet some day, and you think
8 * this stuff is worth it, you can buy me a beer in return.
11 #ifndef MD5_HEADER_INCLUDED
12 #define MD5_HEADER_INCLUDED
14 typedef struct MD5Context {
20 extern void MD5Init(MD5_CTX *ctx);
21 extern void MD5Update(MD5_CTX *ctx, unsigned char const *buf, unsigned len);
22 extern void MD5Final(unsigned char digest[16], MD5_CTX *ctx);
24 #endif /*MD5_HEADER_INCLUDED */