123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- /**
- * \file config.h
- *
- * This set of compile-time options may be used to enable
- * or disable features selectively, and reduce the global
- * memory footprint.
- */
- #ifndef XYSSL_CONFIG_H
- #define XYSSL_CONFIG_H
- #ifndef _CRT_SECURE_NO_DEPRECATE
- #define _CRT_SECURE_NO_DEPRECATE 1
- #endif
- /*
- * Uncomment if native integers are 8-bit wide.
- *
- #define XYSSL_HAVE_INT8
- */
- /*
- * Uncomment if native integers are 16-bit wide.
- *
- #define XYSSL_HAVE_INT16
- */
- /*
- * Uncomment if the compiler supports long long.
- *
- #define XYSSL_HAVE_LONGLONG
- */
- /*
- * Uncomment to enable the use of assembly code.
- */
- //#define XYSSL_HAVE_ASM
- /*
- * Uncomment if the CPU supports SSE2 (IA-32 specific).
- *
- #define XYSSL_HAVE_SSE2
- */
- /*
- * Enable all SSL/TLS debugging messages.
- #define XYSSL_DEBUG_MSG
- */
- /*
- * Enable the checkup functions (*_self_test).
- */
- #define XYSSL_SELF_TEST
- /*
- * Enable the prime-number generation code.
- */
- #define XYSSL_GENPRIME
- /*
- * Uncomment this macro to store the AES tables in ROM.
- *
- #define XYSSL_AES_ROM_TABLES
- */
- /*
- * Module: library/aes.c
- * Caller: library/ssl_tls.c
- *
- * This module enables the following ciphersuites:
- * SSL_RSA_AES_128_SHA
- * SSL_RSA_AES_256_SHA
- * SSL_EDH_RSA_AES_256_SHA
- */
- #define XYSSL_AES_C
- /*
- * Module: library/arc4.c
- * Caller: library/ssl_tls.c
- *
- * This module enables the following ciphersuites:
- * SSL_RSA_RC4_128_MD5
- * SSL_RSA_RC4_128_SHA
- */
- #define XYSSL_ARC4_C
- /*
- * Module: library/base64.c
- * Caller: library/x509parse.c
- *
- * This module is required for X.509 support.
- */
- #define XYSSL_BASE64_C
- /*
- * Module: library/bignum.c
- * Caller: library/dhm.c
- * library/rsa.c
- * library/ssl_tls.c
- * library/x509parse.c
- *
- * This module is required for RSA and DHM support.
- */
- #define XYSSL_BIGNUM_C
- /*
- * Module: library/certs.c
- * Caller:
- *
- * This module is used for testing (ssl_client/server).
- */
- #define XYSSL_CERTS_C
- /*
- * Module: library/debug.c
- * Caller: library/ssl_cli.c
- * library/ssl_srv.c
- * library/ssl_tls.c
- *
- * This module provides debugging functions.
- #define XYSSL_DEBUG_C
- */
- /*
- * Module: library/des.c
- * Caller: library/ssl_tls.c
- *
- * This module enables the following ciphersuites:
- * SSL_RSA_DES_168_SHA
- * SSL_EDH_RSA_DES_168_SHA
- */
- #define XYSSL_DES_C
- /*
- * Module: library/dhm.c
- * Caller: library/ssl_cli.c
- * library/ssl_srv.c
- *
- * This module enables the following ciphersuites:
- * SSL_EDH_RSA_DES_168_SHA
- * SSL_EDH_RSA_AES_256_SHA
- */
- #define XYSSL_DHM_C
- /*
- * Module: library/havege.c
- * Caller:
- *
- * This module enables the HAVEGE random number generator.
- */
- #define XYSSL_HAVEGE_C
- /*
- * Module: library/md2.c
- * Caller: library/x509parse.c
- *
- * Uncomment to enable support for (rare) MD2-signed X.509 certs.
- *
- #define XYSSL_MD2_C
- */
- /*
- * Module: library/md4.c
- * Caller: library/x509parse.c
- *
- * Uncomment to enable support for (rare) MD4-signed X.509 certs.
- *
- #define XYSSL_MD4_C
- */
- /*
- * Module: library/md5.c
- * Caller: library/ssl_tls.c
- * library/x509parse.c
- *
- * This module is required for SSL/TLS and X.509.
- */
- #define XYSSL_MD5_C
- /*
- * Module: library/net.c
- * Caller:
- *
- * This module provides TCP/IP networking routines.
- */
- #define XYSSL_NET_C
- /*
- * Module: library/padlock.c
- * Caller: library/aes.c
- *
- * This modules adds support for the VIA PadLock on x86.
- */
- #define XYSSL_PADLOCK_C
- /*
- * Module: library/rsa.c
- * Caller: library/ssl_cli.c
- * library/ssl_srv.c
- * library/ssl_tls.c
- * library/x509.c
- *
- * This module is required for SSL/TLS and MD5-signed certificates.
- */
- #define XYSSL_RSA_C
- /*
- * Module: library/sha1.c
- * Caller: library/ssl_cli.c
- * library/ssl_srv.c
- * library/ssl_tls.c
- * library/x509parse.c
- *
- * This module is required for SSL/TLS and SHA1-signed certificates.
- */
- #define XYSSL_SHA1_C
- /*
- * Module: library/sha2.c
- * Caller:
- *
- * This module adds support for SHA-224 and SHA-256.
- */
- #define XYSSL_SHA2_C
- /*
- * Module: library/sha4.c
- * Caller:
- *
- * This module adds support for SHA-384 and SHA-512.
- */
- #define XYSSL_SHA4_C
- /*
- * Module: library/ssl_cli.c
- * Caller:
- *
- * This module is required for SSL/TLS client support.
- */
- #define XYSSL_SSL_CLI_C
- /*
- * Module: library/ssl_srv.c
- * Caller:
- *
- * This module is required for SSL/TLS server support.
- */
- #define XYSSL_SSL_SRV_C
- /*
- * Module: library/ssl_tls.c
- * Caller: library/ssl_cli.c
- * library/ssl_srv.c
- *
- * This module is required for SSL/TLS.
- */
- #define XYSSL_SSL_TLS_C
- /*
- * Module: library/timing.c
- * Caller: library/havege.c
- *
- * This module is used by the HAVEGE random number generator.
- */
- #define XYSSL_TIMING_C
- /*
- * Module: library/x509parse.c
- * Caller: library/ssl_cli.c
- * library/ssl_srv.c
- * library/ssl_tls.c
- *
- * This module is required for X.509 certificate parsing.
- */
- #define XYSSL_X509_PARSE_C
- /*
- * Module: library/x509_write.c
- * Caller:
- *
- * This module is required for X.509 certificate writing.
- */
- #define XYSSL_X509_WRITE_C
- #endif /* config.h */
|