summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-rsa.h
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-02-24 19:14:59 +0000
committermarkus <markus@openbsd.org>2002-02-24 19:14:59 +0000
commit46a655d6003f6c6242f3cb343879e1d4479217fc (patch)
treed62b4cb60e1816bf6e49d8c53b0201cc9ec4681a /usr.bin/ssh/ssh-rsa.h
parentProper screenblank semantics (diff)
downloadwireguard-openbsd-46a655d6003f6c6242f3cb343879e1d4479217fc.tar.xz
wireguard-openbsd-46a655d6003f6c6242f3cb343879e1d4479217fc.zip
signed vs. unsigned: make size arguments u_int, ok stevesk@
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.h')
-rw-r--r--usr.bin/ssh/ssh-rsa.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-rsa.h b/usr.bin/ssh/ssh-rsa.h
index 11d355d583c..7177a3f9211 100644
--- a/usr.bin/ssh/ssh-rsa.h
+++ b/usr.bin/ssh/ssh-rsa.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-rsa.h,v 1.5 2001/06/26 17:27:25 markus Exp $ */
+/* $OpenBSD: ssh-rsa.h,v 1.6 2002/02/24 19:14:59 markus Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -26,7 +26,7 @@
#ifndef SSH_RSA_H
#define SSH_RSA_H
-int ssh_rsa_sign(Key *, u_char **, int *, u_char *, int);
-int ssh_rsa_verify(Key *, u_char *, int, u_char *, int);
+int ssh_rsa_sign(Key *, u_char **, u_int *, u_char *, u_int);
+int ssh_rsa_verify(Key *, u_char *, u_int, u_char *, u_int);
#endif