summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/rsa.h
diff options
context:
space:
mode:
authoritojun <itojun@openbsd.org>2001-06-26 06:32:46 +0000
committeritojun <itojun@openbsd.org>2001-06-26 06:32:46 +0000
commit08d1172d67ef632962039f0f9b05c55ed93331bf (patch)
treec18845a72fb322f4f7a85a8fcaea0f32044feb71 /usr.bin/ssh/rsa.h
parentAppease gcc by not using void pointers in arithmetic operations; art@ ok (diff)
downloadwireguard-openbsd-08d1172d67ef632962039f0f9b05c55ed93331bf.tar.xz
wireguard-openbsd-08d1172d67ef632962039f0f9b05c55ed93331bf.zip
prototype pedant. not very creative...
- () -> (void) - no variable names
Diffstat (limited to 'usr.bin/ssh/rsa.h')
-rw-r--r--usr.bin/ssh/rsa.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/rsa.h b/usr.bin/ssh/rsa.h
index d3d2c996427..b803b3ad35f 100644
--- a/usr.bin/ssh/rsa.h
+++ b/usr.bin/ssh/rsa.h
@@ -11,7 +11,7 @@
* called by a name other than "ssh" or "Secure Shell".
*/
-/* RCSID("$OpenBSD: rsa.h,v 1.11 2001/03/26 23:23:24 markus Exp $"); */
+/* RCSID("$OpenBSD: rsa.h,v 1.12 2001/06/26 06:32:58 itojun Exp $"); */
#ifndef RSA_H
#define RSA_H
@@ -19,9 +19,9 @@
#include <openssl/bn.h>
#include <openssl/rsa.h>
-void rsa_public_encrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv));
-int rsa_private_decrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv));
+void rsa_public_encrypt __P((BIGNUM *, BIGNUM *, RSA *));
+int rsa_private_decrypt __P((BIGNUM *, BIGNUM *, RSA *));
-void generate_additional_parameters __P((RSA *rsa));
+void generate_additional_parameters __P((RSA *));
#endif /* RSA_H */