diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-11 00:40:23 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-11 00:40:23 +0100 |
commit | ab18c412e6773b34e4640e4b9277573fd91a66bf (patch) | |
tree | f0ab48cd9e112a4d866785d2a5b64eda39986b4e /rsa.h | |
parent | - Merged several minor fixed: (diff) | |
download | openssh-ab18c412e6773b34e4640e4b9277573fd91a66bf.tar.xz openssh-ab18c412e6773b34e4640e4b9277573fd91a66bf.zip |
- 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.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 */ |