master xplshn/aruu / shared / md5.h
 1/* public domain md5 implementation based on rfc1321 and libtomcrypt */
 2
 3#include <stdint.h>
 4struct md5 {
 5  uint64_t len;     /* processed message length */
 6  uint32_t h[4];    /* hash state */
 7  uint8_t  buf[64]; /* message block buffer */
 8};
 9
10enum { MD5_DIGEST_LENGTH = 16 };
11
12/* reset state */
13void md5_init(void *ctx);
14/* process message */
15void md5_update(void *ctx, const void *m, unsigned long len);
16/* get message digest */
17/* state is ruined after sum, keep a copy if multiple sum is needed */
18/* part of the message might be left in s, zero it if secrecy is needed */
19void md5_sum(void *ctx, uint8_t md[MD5_DIGEST_LENGTH]);