* QUESTION: Replace this with SHA, which as generally received better
* reviews from the cryptographic community?
*/
-void MD5Init (buf)
- u_int32_t buf[4];
+void MD5Init (u_int32_t buf[4])
{
buf[0] = 0x67452301;
buf[1] = 0xefcdab89;
* The core of the MD5 algorithm, this alters an existing MD5 hash to
* reflect the addition of 16 longwords of new data.
*/
-void MD5Transform (buf, in)
- u_int32_t buf[4];
- u_int32_t in[16];
+void MD5Transform (u_int32_t buf[4], u_int32_t in[16])
{
u_int32_t a, b, c, d;