view md5.h @ 91:04f62b676170 libavutil

floating point "emulation" code unused currently, but might come in handy for some fpu-less cpus
author michael
date Tue, 08 Aug 2006 07:58:10 +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 */