X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshmd5.c;h=b39dfd3e52dba4a399706c3769193c05ff738168;hb=af1460d6e5044a3344aaacd15c91cfdcb58578e7;hp=f34f851dd30a4426301715986f322aa3029edd5e;hpb=16c46ecdaf71e4c9dddcd933778f02d78425f6a5;p=PuTTY.git diff --git a/sshmd5.c b/sshmd5.c index f34f851d..b39dfd3e 100644 --- a/sshmd5.c +++ b/sshmd5.c @@ -221,7 +221,7 @@ void MD5Simple(void const *p, unsigned len, unsigned char output[16]) * useful elsewhere (SOCKS5 CHAP authentication uses HMAC-MD5). */ -void *hmacmd5_make_context(void) +void *hmacmd5_make_context(void *cipher_ctx) { return snewn(3, struct MD5Context); } @@ -337,6 +337,6 @@ const struct ssh_mac ssh_hmac_md5 = { hmacmd5_generate, hmacmd5_verify, hmacmd5_start, hmacmd5_bytes, hmacmd5_genresult, hmacmd5_verresult, "hmac-md5", "hmac-md5-etm@openssh.com", - 16, + 16, 16, "HMAC-MD5" };