svn commit: samba r15204 - in branches/SAMBA_4_0/source/lib/crypto: .

jelmer at samba.org jelmer at samba.org
Mon Apr 24 14:53:06 GMT 2006


Author: jelmer
Date: 2006-04-24 14:53:03 +0000 (Mon, 24 Apr 2006)
New Revision: 15204

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15204

Log:
Fix MD5Update prototype

Modified:
   branches/SAMBA_4_0/source/lib/crypto/md5.h


Changeset:
Modified: branches/SAMBA_4_0/source/lib/crypto/md5.h
===================================================================
--- branches/SAMBA_4_0/source/lib/crypto/md5.h	2006-04-24 14:52:37 UTC (rev 15203)
+++ branches/SAMBA_4_0/source/lib/crypto/md5.h	2006-04-24 14:53:03 UTC (rev 15204)
@@ -11,9 +11,9 @@
 	uint8_t in[64];
 };
 
-_PUBLIC_ void MD5Init(struct MD5Context *context);
-_PUBLIC_ void MD5Update(struct MD5Context *context, const uint8_t *buf,
-	       uint_t len);
-_PUBLIC_ void MD5Final(uint8_t digest[16], struct MD5Context *context);
+void MD5Init(struct MD5Context *context);
+void MD5Update(struct MD5Context *context, const uint8_t *buf,
+	       size_t len);
+void MD5Final(uint8_t digest[16], struct MD5Context *context);
 
 #endif /* !MD5_H */



More information about the samba-cvs mailing list