summaryrefslogtreecommitdiff
path: root/fitz/image_md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/image_md5.c')
-rw-r--r--fitz/image_md5.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/fitz/image_md5.c b/fitz/image_md5.c
deleted file mode 100644
index aea290ec..00000000
--- a/fitz/image_md5.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "mupdf/fitz.h"
-
-void fz_md5_pixmap(fz_pixmap *pix, unsigned char digest[16])
-{
- fz_md5 md5;
-
- fz_md5_init(&md5);
- if (pix)
- fz_md5_update(&md5, pix->samples, pix->w * pix->h * pix->n);
- fz_md5_final(&md5, digest);
-}