diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-12-23 03:06:19 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-12-23 03:06:19 +0100 |
commit | 93576d9538f3b6d373248ffd2ed5ab9852a1555c (patch) | |
tree | 586371841e0ce380acea9ede52d3b73b209cc570 /ssh-rsa.c | |
parent | - markus@cvs.openbsd.org 2002/11/21 22:45:31 (diff) | |
download | openssh-93576d9538f3b6d373248ffd2ed5ab9852a1555c.tar.xz openssh-93576d9538f3b6d373248ffd2ed5ab9852a1555c.zip |
- deraadt@cvs.openbsd.org 2002/11/21 23:03:51
[auth-krb5.c auth1.c hostfile.h monitor_wrap.c sftp-client.c sftp-int.c ssh-add.c ssh-rsa.c
sshconnect.c]
KNF
Diffstat (limited to 'ssh-rsa.c')
-rw-r--r-- | ssh-rsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-rsa.c,v 1.26 2002/08/27 17:13:56 stevesk Exp $"); +RCSID("$OpenBSD: ssh-rsa.c,v 1.27 2002/11/21 23:03:51 deraadt Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -37,7 +37,7 @@ RCSID("$OpenBSD: ssh-rsa.c,v 1.26 2002/08/27 17:13:56 stevesk Exp $"); #include "compat.h" #include "ssh.h" -static int openssh_RSA_verify(int, u_char *, u_int, u_char *, u_int , RSA *); +static int openssh_RSA_verify(int, u_char *, u_int, u_char *, u_int, RSA *); /* RSASSA-PKCS1-v1_5 (PKCS #1 v2.0 signature) with SHA1 */ int |