summaryrefslogtreecommitdiff
path: root/rsa.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-11 10:40:23 +1100
committerDamien Miller <djm@mindrot.org>1999-11-11 10:40:23 +1100
commitab18c412e6773b34e4640e4b9277573fd91a66bf (patch)
treef0ab48cd9e112a4d866785d2a5b64eda39986b4e /rsa.h
parentb77870fa7341d95024e55a116a3454e9bfe2f21e (diff)
- 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 98a183f57..c19b5a965 100644
--- a/rsa.h
+++ b/rsa.h
@@ -13,7 +13,7 @@ RSA key generation, encryption and decryption.
13 13
14*/ 14*/
15 15
16/* RCSID("$Id: rsa.h,v 1.2 1999/10/28 03:25:17 damien Exp $"); */ 16/* RCSID("$Id: rsa.h,v 1.3 1999/11/10 23:40:23 damien Exp $"); */
17#include "config.h" 17#include "config.h"
18 18
19#ifndef RSA_H 19#ifndef RSA_H
@@ -34,11 +34,11 @@ void rsa_generate_key(RSA *prv, RSA *pub, unsigned int bits);
34 34
35/* Indicates whether the rsa module is permitted to show messages on 35/* Indicates whether the rsa module is permitted to show messages on
36 the terminal. */ 36 the terminal. */
37void rsa_set_verbose __P((int verbose)); 37void rsa_set_verbose(int verbose);
38 38
39int rsa_alive __P((void)); 39int rsa_alive(void);
40 40
41void rsa_public_encrypt __P((BIGNUM *out, BIGNUM *in, RSA *prv)); 41void rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *prv);
42void rsa_private_decrypt __P((BIGNUM *out, BIGNUM *in, RSA *prv)); 42void rsa_private_decrypt(BIGNUM *out, BIGNUM *in, RSA *prv);
43 43
44#endif /* RSA_H */ 44#endif /* RSA_H */