view md5.h @ 48:e80a1c46386a libavutil

compile md5 and include in libavutil.a
author ivo
date Sun, 02 Jul 2006 19:01:52 +0000
parents 58acf79a19d3
children 1a9c62b337e4
line wrap: on
line source

#ifndef MD5_H
#define MD5_H

extern const av_md5_size;

struct AVMD5;

void av_md5_init(struct AVMD5 *ctx);
void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len);
void av_md5_final(struct AVMD5 *ctx, uint8_t *dst);
void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len);

#endif /* MD5_H */