ffmpeg / libavutil / md5.h @ 93d6aeb0
History | View | Annotate | Download (321 Bytes)
1 |
#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 |
void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len); |
12 |
|
13 |
#endif /* MD5_H */ |
14 |
|