X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/6518ea7bd0757c11bfde4ebb958d7a51ab73d7f7..9bfedea6dc2da13773d4105384bac6d201172c87:/sshmd5.c diff --git a/sshmd5.c b/sshmd5.c index 05867408..b4244fe2 100644 --- a/sshmd5.c +++ b/sshmd5.c @@ -19,7 +19,7 @@ #define subround(f,w,x,y,z,k,s,ti) \ w = x + rol(w + f(x,y,z) + block[k] + ti, s) -void MD5_Core_Init(MD5_Core_State * s) +static void MD5_Core_Init(MD5_Core_State * s) { s->h[0] = 0x67452301; s->h[1] = 0xefcdab89; @@ -27,7 +27,7 @@ void MD5_Core_Init(MD5_Core_State * s) s->h[3] = 0x10325476; } -void MD5_Block(MD5_Core_State * s, uint32 * block) +static void MD5_Block(MD5_Core_State * s, uint32 * block) { uint32 a, b, c, d;