]> andersk Git - openssh.git/blob - rsa.h
- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
[openssh.git] / rsa.h
1 /*
2
3 rsa.h
4
5 Author: Tatu Ylonen <ylo@cs.hut.fi>
6
7 Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8                    All rights reserved
9
10 Created: Fri Mar  3 22:01:06 1995 ylo
11
12 RSA key generation, encryption and decryption.
13
14 */
15
16 /* RCSID("$Id$"); */
17 #include "config.h"
18
19 #ifndef RSA_H
20 #define RSA_H
21
22 #ifdef HAVE_OPENSSL
23 #include <openssl/bn.h>
24 #include <openssl/rsa.h>
25 #endif
26
27 #ifdef HAVE_SSL
28 #include <ssl/bn.h>
29 #include <ssl/rsa.h>
30 #endif
31
32 /* Calls SSL RSA_generate_key, only copies to prv and pub */
33 void rsa_generate_key(RSA *prv, RSA *pub, unsigned int bits);
34
35 /* Indicates whether the rsa module is permitted to show messages on
36    the terminal. */
37 void rsa_set_verbose __P((int verbose));
38
39 int  rsa_alive __P((void));
40
41 void rsa_public_encrypt __P((BIGNUM *out, BIGNUM *in, RSA *prv));
42 void rsa_private_decrypt __P((BIGNUM *out, BIGNUM *in, RSA *prv));
43
44 #endif /* RSA_H */
This page took 0.533581 seconds and 5 git commands to generate.