ffmpeg / libavutil / md5.h @ 94d85eaf
History | View | Annotate | Download (255 Bytes)
1 | 94d85eaf | Michael Niedermayer | #ifndef MD5_H
|
---|---|---|---|
2 | #define MD5_H
|
||
3 | |||
4 | extern const av_md5_size; |
||
5 | |||
6 | struct AVMD5;
|
||
7 | |||
8 | void av_md5_init(struct AVMD5 *ctx); |
||
9 | void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len); |
||
10 | void av_md5_final(struct AVMD5 *ctx, uint8_t *dst); |
||
11 | |||
12 | #endif /* MD5_H */ |