view md5.h @ 49:1a9c62b337e4 libavutil

kill warnings
author mru
date Sun, 02 Jul 2006 19:26:22 +0000
parents 58acf79a19d3
children 11be8e0d1344
line wrap: on
line source

#ifndef MD5_H
#define MD5_H

extern const int 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 */