diff options
Diffstat (limited to 'ssh-rsa.c')
-rw-r--r-- | ssh-rsa.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | RCSID("$OpenBSD: ssh-rsa.c,v 1.25 2002/08/02 22:20:30 markus Exp $"); | 26 | RCSID("$OpenBSD: ssh-rsa.c,v 1.26 2002/08/27 17:13:56 stevesk Exp $"); |
27 | 27 | ||
28 | #include <openssl/evp.h> | 28 | #include <openssl/evp.h> |
29 | #include <openssl/err.h> | 29 | #include <openssl/err.h> |
@@ -211,7 +211,8 @@ static int | |||
211 | openssh_RSA_verify(int type, u_char *hash, u_int hashlen, | 211 | openssh_RSA_verify(int type, u_char *hash, u_int hashlen, |
212 | u_char *sigbuf, u_int siglen, RSA *rsa) | 212 | u_char *sigbuf, u_int siglen, RSA *rsa) |
213 | { | 213 | { |
214 | u_int ret, rsasize, len, oidlen = 0, hlen = 0; | 214 | u_int ret, rsasize, oidlen = 0, hlen = 0; |
215 | int len; | ||
215 | const u_char *oid = NULL; | 216 | const u_char *oid = NULL; |
216 | u_char *decrypted = NULL; | 217 | u_char *decrypted = NULL; |
217 | 218 | ||