diff options
Diffstat (limited to 'rsa.h')
-rw-r--r-- | rsa.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 */ |