1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-19 12:04:35 +03:00
openwrt-xburst/target/linux/package/bcm43xx-dscape/fwcutter/md5.h
nbd 35c661da8e add bcm43xx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2836 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-01-05 01:42:16 +00:00

17 lines
379 B
C

#ifndef FWCUTTER_MD5_H_
#define FWCUTTER_MD5_H_
#include <stdint.h>
struct MD5Context {
uint32_t buf[4];
uint32_t bits[2];
unsigned char in[64];
};
void MD5Init(struct MD5Context *ctx);
void MD5Update(struct MD5Context *ctx, unsigned char *buf, unsigned len);
void MD5Final(unsigned char *digest, struct MD5Context *ctx);
#endif /* FWCUTTER_MD5_H_ */