diff options
author | qrort <qrort@yandex-team.com> | 2022-11-30 23:47:12 +0300 |
---|---|---|
committer | qrort <qrort@yandex-team.com> | 2022-11-30 23:47:12 +0300 |
commit | 22f8ae0e3f5d68b92aecccdf96c1d841a0334311 (patch) | |
tree | bffa27765faf54126ad44bcafa89fadecb7a73d7 /contrib/libs/matrixssl/src/matrixConfig.h | |
parent | 332b99e2173f0425444abb759eebcb2fafaa9209 (diff) | |
download | ydb-22f8ae0e3f5d68b92aecccdf96c1d841a0334311.tar.gz |
validate canons without yatest_common
Diffstat (limited to 'contrib/libs/matrixssl/src/matrixConfig.h')
-rw-r--r-- | contrib/libs/matrixssl/src/matrixConfig.h | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/contrib/libs/matrixssl/src/matrixConfig.h b/contrib/libs/matrixssl/src/matrixConfig.h new file mode 100644 index 00000000000..b21a30c5b54 --- /dev/null +++ b/contrib/libs/matrixssl/src/matrixConfig.h @@ -0,0 +1,97 @@ +/* + * matrixConfig.h + * Release $Name: MATRIXSSL_1_8_7_OPEN $ + * + * Configuration settings for building the MatrixSSL library. + * These options affect the size and algorithms present in the library. + */ +/* + * Copyright (c) PeerSec Networks, 2002-2009. All Rights Reserved. + * The latest version of this code is available at http://www.matrixssl.org + * + * This software is open source; 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 of the License, or + * (at your option) any later version. + * + * This General Public License does NOT permit incorporating this software + * into proprietary programs. If you are unable to comply with the GPL, a + * commercial license for this software may be purchased from PeerSec Networks + * at http://www.peersec.com + * + * This program is distributed in 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 program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * http://www.gnu.org/copyleft/gpl.html + */ +/******************************************************************************/ + +#ifndef _h_MATRIXCONFIG +#define _h_MATRIXCONFIG + +#ifdef __cplusplus +extern "C" { +#endif + +/******************************************************************************/ +/* + Define the number of sessions to cache here. + Minimum value is 1 + Session caching provides such an increase in performance that it isn't + an option to disable. +*/ +#define SSL_SESSION_TABLE_SIZE 32 + +/******************************************************************************/ +/* + Define the following to enable various cipher suites + At least one of these must be defined. If multiple are defined, + the handshake will determine which is best for the connection. +*/ +#define USE_SSL_RSA_WITH_RC4_128_MD5 +#define USE_SSL_RSA_WITH_RC4_128_SHA +#define USE_SSL_RSA_WITH_3DES_EDE_CBC_SHA + +/******************************************************************************/ +/* + Support for encrypted private key files, using 3DES +*/ +#define USE_ENCRYPTED_PRIVATE_KEYS + +/******************************************************************************/ +/* + Support for client side SSL +*/ +#define USE_CLIENT_SIDE_SSL +#define USE_SERVER_SIDE_SSL + + +/******************************************************************************/ +/* + Use native 64 bit integers (long longs) +*/ +#define USE_INT64 + +/******************************************************************************/ +/* + Hi-res POSIX timer. Use rdtscll() for timing routines in linux.c +*/ +/* #define USE_RDTSCLL_TIME */ + +/******************************************************************************/ +/* + Support for file system. +*/ +#define USE_FILE_SYSTEM + +#ifdef __cplusplus +} +#endif + +#endif /* _h_MATRIXCONFIG */ + +/******************************************************************************/ |