view md5.h @ 50:65245022a46c libavutil

1l: put that int i back
author mru
date Sun, 02 Jul 2006 20:20:28 +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 */