2006-07-01 10:02:08 +00:00
|
|
|
#ifndef MD5_H
|
|
|
|
#define MD5_H
|
|
|
|
|
2006-07-02 19:26:22 +00:00
|
|
|
extern const int av_md5_size;
|
2006-07-01 10:02:08 +00:00
|
|
|
|
|
|
|
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);
|
2006-07-02 19:01:09 +00:00
|
|
|
void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len);
|
2006-07-01 10:02:08 +00:00
|
|
|
|
|
|
|
#endif /* MD5_H */
|
|
|
|
|