summaryrefslogtreecommitdiff
path: root/rsa.h
diff options
context:
space:
mode:
authordamien <damien>1999-11-10 23:40:23 +0000
committerdamien <damien>1999-11-10 23:40:23 +0000
commitd1d82a1fed032079b4d74510bb31c8ed9ca41582 (patch)
treef0ab48cd9e112a4d866785d2a5b64eda39986b4e /rsa.h
parent9354602a17a9bd44c871ceaca18dd7dfd2c3ef5c (diff)
downloadopenssh-d1d82a1fed032079b4d74510bb31c8ed9ca41582.tar.gz
- Added (untested) Entropy Gathering Daemon (EGD) support
- Merged several minor fixed: - ssh-agent commandline parsing - RPM spec file now installs ssh setuid root - Makefile creates libdir - Merged beginnings of Solaris compability from Marc G. Fournier <marc.fournier@acadiau.ca>
Diffstat (limited to 'rsa.h')
-rw-r--r--rsa.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/rsa.h b/rsa.h
index 98a183f5..c19b5a96 100644
--- a/rsa.h
+++ b/rsa.h
@@ -13,7 +13,7 @@ RSA key generation, encryption and decryption.
*/
-/* RCSID("$Id: rsa.h,v 1.2 1999/10/28 03:25:17 damien Exp $"); */
+/* RCSID("$Id: rsa.h,v 1.3 1999/11/10 23:40:23 damien Exp $"); */
#include "config.h"
#ifndef RSA_H
@@ -34,11 +34,11 @@ void rsa_generate_key(RSA *prv, RSA *pub, unsigned int bits);
/* Indicates whether the rsa module is permitted to show messages on
the terminal. */
-void rsa_set_verbose __P((int verbose));
+void rsa_set_verbose(int verbose);
-int rsa_alive __P((void));
+int rsa_alive(void);
-void rsa_public_encrypt __P((BIGNUM *out, BIGNUM *in, RSA *prv));
-void rsa_private_decrypt __P((BIGNUM *out, BIGNUM *in, RSA *prv));
+void rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *prv);
+void rsa_private_decrypt(BIGNUM *out, BIGNUM *in, RSA *prv);
#endif /* RSA_H */