summaryrefslogtreecommitdiff
path: root/ssh-rsa.c
diff options
context:
space:
mode:
authordjm <djm>2003-06-18 10:29:01 +0000
committerdjm <djm>2003-06-18 10:29:01 +0000
commit7f6acf201f997e2e2c2bc1a7e8db63e3a29584e2 (patch)
treeb542b4a73dfa43e403a7e3dc7aa61c8108a5ea6f /ssh-rsa.c
parentc24adb9f6092640eee56cc382b88e939045329e8 (diff)
downloadopenssh-7f6acf201f997e2e2c2bc1a7e8db63e3a29584e2.tar.gz
- markus@cvs.openbsd.org 2003/06/16 08:22:35
[ssh-rsa.c] make sure the signature has at least the expected length (don't insist on len == hlen + oidlen, since this breaks some smartcards) bugzilla #592; ok djm@
Diffstat (limited to 'ssh-rsa.c')
-rw-r--r--ssh-rsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-rsa.c b/ssh-rsa.c
index efbc9e66..db8e5e35 100644
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-rsa.c,v 1.28 2003/02/12 09:33:04 markus Exp $");
+RCSID("$OpenBSD: ssh-rsa.c,v 1.29 2003/06/16 08:22:35 markus Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -247,8 +247,8 @@ openssh_RSA_verify(int type, u_char *hash, u_int hashlen,
ERR_error_string(ERR_get_error(), NULL));
goto done;
}
- if (len != hlen + oidlen) {
- error("bad decrypted len: %d != %d + %d", len, hlen, oidlen);
+ if (len < hlen + oidlen) {
+ error("bad decrypted len: %d < %d + %d", len, hlen, oidlen);
goto done;
}
if (memcmp(decrypted, oid, oidlen) != 0) {