📄 config.h
字号:
/** * \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/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/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#endif /* config.h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -