summaryrefslogtreecommitdiff
path: root/auth-rsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-rsa.c')
-rw-r--r--auth-rsa.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/auth-rsa.c b/auth-rsa.c
index c51400c2a..5b98f2cf2 100644
--- a/auth-rsa.c
+++ b/auth-rsa.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$OpenBSD: auth-rsa.c,v 1.53 2002/03/25 09:21:13 markus Exp $"); 17RCSID("$OpenBSD: auth-rsa.c,v 1.54 2002/03/26 23:13:03 markus Exp $");
18 18
19#include <openssl/rsa.h> 19#include <openssl/rsa.h>
20#include <openssl/md5.h> 20#include <openssl/md5.h>
@@ -78,6 +78,13 @@ auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
78 MD5_CTX md; 78 MD5_CTX md;
79 int len; 79 int len;
80 80
81 /* don't allow short keys */
82 if (BN_num_bits(key->rsa->n) < 768) {
83 error("auth_rsa_verify_response: n too small: %d bits",
84 BN_num_bits(key->rsa->n));
85 return (0);
86 }
87
81 /* The response is MD5 of decrypted challenge plus session id. */ 88 /* The response is MD5 of decrypted challenge plus session id. */
82 len = BN_num_bytes(challenge); 89 len = BN_num_bytes(challenge);
83 if (len <= 0 || len > 32) 90 if (len <= 0 || len > 32)