Welcome to mirror list, hosted at ThFree Co, Russian Federation.

md5.h « libavutil - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31d2808dd74c61b61a899cf3face4b7eabbe130e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MD5_H
#define MD5_H

extern const 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);

#endif /* MD5_H */