summaryrefslogtreecommitdiff
path: root/ssh-rsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-rsa.c')
-rw-r--r--ssh-rsa.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ssh-rsa.c b/ssh-rsa.c
index c4339b95b..8e79d4e1d 100644
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: ssh-rsa.c,v 1.15 2002/01/25 21:42:11 markus Exp $"); 26RCSID("$OpenBSD: ssh-rsa.c,v 1.16 2002/02/24 19:14:59 markus Exp $");
27 27
28#include <openssl/evp.h> 28#include <openssl/evp.h>
29#include <openssl/err.h> 29#include <openssl/err.h>
@@ -40,8 +40,8 @@ RCSID("$OpenBSD: ssh-rsa.c,v 1.15 2002/01/25 21:42:11 markus Exp $");
40int 40int
41ssh_rsa_sign( 41ssh_rsa_sign(
42 Key *key, 42 Key *key,
43 u_char **sigp, int *lenp, 43 u_char **sigp, u_int *lenp,
44 u_char *data, int datalen) 44 u_char *data, u_int datalen)
45{ 45{
46 const EVP_MD *evp_md; 46 const EVP_MD *evp_md;
47 EVP_MD_CTX md; 47 EVP_MD_CTX md;
@@ -110,8 +110,8 @@ ssh_rsa_sign(
110int 110int
111ssh_rsa_verify( 111ssh_rsa_verify(
112 Key *key, 112 Key *key,
113 u_char *signature, int signaturelen, 113 u_char *signature, u_int signaturelen,
114 u_char *data, int datalen) 114 u_char *data, u_int datalen)
115{ 115{
116 Buffer b; 116 Buffer b;
117 const EVP_MD *evp_md; 117 const EVP_MD *evp_md;