From 0ac844cba4cd53afd6d63b4966db514ec8abef0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 24 Jun 2014 16:30:49 +0200 Subject: [PATCH] Optimize RAM usage in CCM-PSK config --- configs/config-ccm-psk-tls1_2.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/configs/config-ccm-psk-tls1_2.h b/configs/config-ccm-psk-tls1_2.h index 3941028a4..8560a7b56 100644 --- a/configs/config-ccm-psk-tls1_2.h +++ b/configs/config-ccm-psk-tls1_2.h @@ -1,5 +1,10 @@ /* * Minimal configuration for TLS 1.2 with PSK and AES-CCM ciphersuites + * Distinguishing features: + * - no bignum, no PK, no X509 + * - fully modern and secure (provided the pre-shared keys have high entropy) + * - very low record overhead if using the CCM-8 suites + * - optimized for low RAM usage * * See README.txt for usage instructions. */ @@ -27,6 +32,21 @@ #define POLARSSL_SSL_SRV_C #define POLARSSL_SSL_TLS_C +/* Save RAM at the expense of ROM */ +#define POLARSSL_AES_ROM_TABLES + +/* + * You should adjust this to the exact number of sources you're using: default + * is the "platform_entrpy_poll" source, but you may want to add other ones + */ +#define ENTROPY_MAX_SOURCES 1 + +/* + * Save RAM at the expense of interoperability: do this only if you control + * both ends of the connection! (See coments in "polarssl/ssl.h".) + */ +#define SSL_MAX_CONTENT_LEN 512 + #include "check_config.h" #endif /* POLARSSL_CONFIG_H */