You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.0 KiB
49 lines
1.0 KiB
//
|
|
// SSLConnection.cc
|
|
//
|
|
// SSLConnection: This class forms a easy to use interface to the
|
|
// socket interface using SSL connection encryption.
|
|
//
|
|
// Part of the ht://Dig package <http://www.htdig.org/>
|
|
// Copyright (c) 1999-2004 The ht://Dig Group
|
|
// For copyright details, see the file COPYING in your distribution
|
|
// or the GNU Library General Public License (LGPL) version 2 or later
|
|
// <http://www.gnu.org/copyleft/lgpl.html>
|
|
//
|
|
// $Id: SSLConnection.h,v 1.5 2004/05/28 13:15:23 lha Exp $
|
|
//
|
|
|
|
#ifndef _SSLConnection_h_
|
|
#define _SSLConnection_h_
|
|
|
|
#include "Connection.h"
|
|
|
|
#ifdef HAVE_SSL_H
|
|
#include <openssl/crypto.h>
|
|
#include <openssl/x509.h>
|
|
#include <openssl/pem.h>
|
|
#include <openssl/ssl.h>
|
|
#include <openssl/err.h>
|
|
|
|
class SSLConnection : public Connection
|
|
{
|
|
public:
|
|
SSLConnection();
|
|
SSLConnection(int socket);
|
|
~SSLConnection();
|
|
|
|
protected:
|
|
static SSL_CTX *ctx;
|
|
SSL *ssl;
|
|
|
|
void InitSSL();
|
|
int Connect();
|
|
int Close();
|
|
|
|
int Read_Partial( char *buffer, int maxlength );
|
|
int Write_Partial( char *buffer, int maxlength );
|
|
};
|
|
#endif
|
|
|
|
#endif
|