]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - cproxy.c
Update docs for Ed25519 and ChaCha20-Poly1305.
[PuTTY.git] / cproxy.c
index 934ce3dc228d6f26f5f66d9074e6b11327afd6ca..5f2f15fc73ca687b5f65f92476a1a6b0f60c72b3 100644 (file)
--- a/cproxy.c
+++ b/cproxy.c
@@ -21,7 +21,7 @@ static void hmacmd5_chap(const unsigned char *challenge, int challen,
     void *hmacmd5_ctx;
     int pwlen;
 
-    hmacmd5_ctx = hmacmd5_make_context();
+    hmacmd5_ctx = hmacmd5_make_context(NULL);
 
     pwlen = strlen(passwd);
     if (pwlen>64) {