summaryrefslogtreecommitdiff
path: root/auth-rsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-rsa.c')
-rw-r--r--auth-rsa.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/auth-rsa.c b/auth-rsa.c
index 8de86d2de..076f8a3e4 100644
--- a/auth-rsa.c
+++ b/auth-rsa.c
@@ -15,8 +15,9 @@ validity of the host key.
15 15
16*/ 16*/
17 17
18#include "config.h"
18#include "includes.h" 19#include "includes.h"
19RCSID("$Id: auth-rsa.c,v 1.1 1999/10/27 03:42:43 damien Exp $"); 20RCSID("$Id: auth-rsa.c,v 1.2 1999/10/28 03:25:17 damien Exp $");
20 21
21#include "rsa.h" 22#include "rsa.h"
22#include "packet.h" 23#include "packet.h"
@@ -25,8 +26,14 @@ RCSID("$Id: auth-rsa.c,v 1.1 1999/10/27 03:42:43 damien Exp $");
25#include "mpaux.h" 26#include "mpaux.h"
26#include "uidswap.h" 27#include "uidswap.h"
27 28
29#ifdef HAVE_OPENSSL
28#include <openssl/rsa.h> 30#include <openssl/rsa.h>
29#include <openssl/md5.h> 31#include <openssl/md5.h>
32#endif
33#ifdef HAVE_SSL
34#include <ssl/rsa.h>
35#include <ssl/md5.h>
36#endif
30 37
31/* Flags that may be set in authorized_keys options. */ 38/* Flags that may be set in authorized_keys options. */
32extern int no_port_forwarding_flag; 39extern int no_port_forwarding_flag;