diff options
author | 2001-06-26 06:32:46 +0000 | |
---|---|---|
committer | 2001-06-26 06:32:46 +0000 | |
commit | 08d1172d67ef632962039f0f9b05c55ed93331bf (patch) | |
tree | c18845a72fb322f4f7a85a8fcaea0f32044feb71 /usr.bin/ssh/rsa.h | |
parent | Appease gcc by not using void pointers in arithmetic operations; art@ ok (diff) | |
download | wireguard-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.h | 8 |
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 */ |