]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - mdfour.h
oops, didn't want this debug spam to be committed
[xonotic/darkplaces.git] / mdfour.h
index 69ca6f78f92fda63d95568cdba546e1fcad56950..3ef654c87e157456fe4e41a0899f9a24d5056a7d 100644 (file)
--- a/mdfour.h
+++ b/mdfour.h
@@ -46,9 +46,9 @@ struct mdfour {
 };
 
 void mdfour_begin(struct mdfour *md); // old: MD4Init
-void mdfour_update(struct mdfour *md, unsigned char *in, int n); //old: MD4Update
+void mdfour_update(struct mdfour *md, const unsigned char *in, int n); //old: MD4Update
 void mdfour_result(struct mdfour *md, unsigned char *out); // old: MD4Final
-void mdfour(unsigned char *out, unsigned char *in, int n);
+void mdfour(unsigned char *out, const unsigned char *in, int n);
 
 #endif // _MDFOUR_H