* contrib/make_b32_all.bat
* contrib/make_gcc_all.sh
* contrib/make_vc_all.bat
+ contrib/hbssl
+ contrib/hbssl/Makefile
+ contrib/hbssl/common.mak
+ contrib/hbssl/make_b32.bat
+ contrib/hbssl/make_vc.bat
+ contrib/hbssl/make_gcc.sh
+ contrib/hbssl/hbssl.h
+ contrib/hbssl/hbssl.ch
+ contrib/hbssl/ssl.c
+ contrib/hbssl/sslctx.c
+ contrib/hbssl/sslrand.c
+ contrib/hbssl/tests
+ contrib/hbssl/tests/hbmk_b32.bat
+ contrib/hbssl/tests/hbmk_vc.bat
+ contrib/hbssl/tests/test.prg
+ Added Harbour bindings to OpenSSL.
Work in progress, but it's theoretically already functional.
To build, set your HB_DIR_OPENSSL or HB_INC_OPENSSL envvar.
; TOFIX: Makefile openssl autodetection should be adjusted.
* contrib/examples/uhttpd
! Fixed SVN attributes. (except for /home dir)
78 lines
3.1 KiB
Plaintext
78 lines
3.1 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* OpenSSL API - Harbour header.
|
|
*
|
|
* Copyright 2009 Viktor Szakats <harbour 01 syenar hu>
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#ifndef HBSSL_CH_
|
|
#define HBSSL_CH_
|
|
|
|
/* NOTE: This file is also used by C code. */
|
|
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV2 0
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV2_SERVER 1
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV2_CLIENT 2
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV3 3
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV3_SERVER 4
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV3_CLIENT 5
|
|
#define HB_SSL_CTX_NEW_METHOD_TLSV1 6
|
|
#define HB_SSL_CTX_NEW_METHOD_TLSV1_SERVER 7
|
|
#define HB_SSL_CTX_NEW_METHOD_TLSV1_CLIENT 8
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV23 9
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV23_SERVER 10
|
|
#define HB_SSL_CTX_NEW_METHOD_SSLV23_CLIENT 11
|
|
|
|
#define HB_SSLEAY_VERSION 0
|
|
#define HB_SSLEAY_CFLAGS 1
|
|
#define HB_SSLEAY_BUILT_ON 2
|
|
#define HB_SSLEAY_PLATFORM 3
|
|
#define HB_SSLEAY_DIR 4
|
|
|
|
#endif /* HBSSL_CH_ */
|