view md5.h @ 100:5d02abb9a7e5 libavutil

attribute_deprecated
author michael
date Sun, 20 Aug 2006 10:42:11 +0000
parents 1a9c62b337e4
children 11be8e0d1344
line wrap: on
line source

#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 */