summaryrefslogtreecommitdiff
path: root/libavutil/md5.h
blob: c8144b4ccefc5d4bbbe52a1d1ae5a5f79bb6ee87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 */