diff options
author | Damien Miller <djm@mindrot.org> | 2002-01-22 13:11:38 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-01-22 13:11:38 +0100 |
commit | 66823cddbe80d1d22ac44d503b8c121f071e7105 (patch) | |
tree | f08715640b009f1db31f07e73a15a627496c2d79 /auth-rsa.c | |
parent | - markus@cvs.openbsd.org 2001/12/27 19:54:53 (diff) | |
download | openssh-66823cddbe80d1d22ac44d503b8c121f071e7105.tar.xz openssh-66823cddbe80d1d22ac44d503b8c121f071e7105.zip |
- markus@cvs.openbsd.org 2001/12/27 20:39:58
[auth1.c auth-rsa.c channels.c clientloop.c packet.c packet.h serverloop.c session.c ssh.c sshconnect1.c sshd.c ttymodes.c]
get rid of packet_integrity_check, use packet_done() instead.
Diffstat (limited to 'auth-rsa.c')
-rw-r--r-- | auth-rsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-rsa.c b/auth-rsa.c index de50b8ef8..1d74a79cd 100644 --- a/auth-rsa.c +++ b/auth-rsa.c @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-rsa.c,v 1.47 2001/12/27 18:22:16 markus Exp $"); +RCSID("$OpenBSD: auth-rsa.c,v 1.48 2001/12/27 20:39:58 markus Exp $"); #include <openssl/rsa.h> #include <openssl/md5.h> @@ -92,9 +92,9 @@ auth_rsa_challenge_dialog(RSA *pk) /* Wait for a response. */ packet_read_expect(&plen, SSH_CMSG_AUTH_RSA_RESPONSE); - packet_integrity_check(plen, 16, SSH_CMSG_AUTH_RSA_RESPONSE); for (i = 0; i < 16; i++) response[i] = packet_get_char(); + packet_done(); /* The response is MD5 of decrypted challenge plus session id. */ len = BN_num_bytes(challenge); |