diff md5.h @ 45:31c84858af22 libavutil

md5 support 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
author michael
date Sat, 01 Jul 2006 10:02:08 +0000
parents
children 58acf79a19d3
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/md5.h	Sat Jul 01 10:02:08 2006 +0000
@@ -0,0 +1,13 @@
+#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 */
+