view md5.h @ 58:3f174e4ccf0c libavutil

spelling typo
author diego
date Wed, 05 Jul 2006 22:56:45 +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 */