mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 12:40:01 +00:00
4dddc5e10c
Originally committed as revision 5585 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 lines
325 B
C
15 lines
325 B
C
#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 */
|
|
|