summaryrefslogtreecommitdiff
path: root/libavutil/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/md5.h')
-rw-r--r--libavutil/md5.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/libavutil/md5.h b/libavutil/md5.h
new file mode 100644
index 0000000000..31d2808dd7
--- /dev/null
+++ b/libavutil/md5.h
@@ -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 */
+