diff options
author | 1999-09-30 17:08:51 +0000 | |
---|---|---|
committer | 1999-09-30 17:08:51 +0000 | |
commit | ca19d458063a7a792bae001d2cfbbfe9d0100ba1 (patch) | |
tree | f0f638635902f282c0de0953d62c6d991ffe4f55 /usr.bin/ssh/ssh-agent.c | |
parent | no longer using rc4 (diff) | |
download | wireguard-openbsd-ca19d458063a7a792bae001d2cfbbfe9d0100ba1.tar.xz wireguard-openbsd-ca19d458063a7a792bae001d2cfbbfe9d0100ba1.zip |
use libc md5
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 255ebd5b207..d024f44580d 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -14,7 +14,7 @@ The authentication agent program. */ #include "includes.h" -RCSID("$Id: ssh-agent.c,v 1.6 1999/09/30 08:34:25 deraadt Exp $"); +RCSID("$Id: ssh-agent.c,v 1.7 1999/09/30 17:08:52 deraadt Exp $"); #include "ssh.h" #include "rsa.h" @@ -23,10 +23,11 @@ RCSID("$Id: ssh-agent.c,v 1.6 1999/09/30 08:34:25 deraadt Exp $"); #include "bufaux.h" #include "xmalloc.h" #include "packet.h" -#include "ssh_md5.h" #include "getput.h" #include "mpaux.h" +#include <md5.h> + typedef struct { int fd; @@ -78,7 +79,7 @@ process_authentication_challenge(SocketEntry *e) int i, pub_bits, len; BIGNUM *pub_e, *pub_n, *challenge; Buffer msg; - struct MD5Context md; + MD5_CTX md; unsigned char buf[32], mdbuf[16], session_id[16]; unsigned int response_type; |