94d85eaf34
depending on CONFIG_SMALL this can either be compiled to a fully unrolled kernel / rfc reference style md5 routine or a single loop similar to what mplayer uses Originally committed as revision 5565 to svn://svn.ffmpeg.org/ffmpeg/trunk
14 lines
255 B
C
14 lines
255 B
C
#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 */
|
|
|