=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/mpaux.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/usr.bin/ssh/Attic/mpaux.c 1999/09/28 04:45:36 1.2 +++ src/usr.bin/ssh/Attic/mpaux.c 1999/09/30 17:08:52 1.3 @@ -15,13 +15,14 @@ */ #include "includes.h" -RCSID("$Id: mpaux.c,v 1.2 1999/09/28 04:45:36 provos Exp $"); +RCSID("$Id: mpaux.c,v 1.3 1999/09/30 17:08:52 deraadt Exp $"); #include #include "getput.h" #include "xmalloc.h" -#include "ssh_md5.h" +#include + void compute_session_id(unsigned char session_id[16], unsigned char cookie[8], @@ -32,7 +33,7 @@ { unsigned int bytes = (host_key_bits + 7) / 8 + (session_key_bits + 7) / 8 + 8; unsigned char *buf = xmalloc(bytes); - struct MD5Context md; + MD5_CTX md; BN_bn2bin(host_key_n, buf); BN_bn2bin(session_key_n, buf + (host_key_bits + 7 ) / 8);