mirror of
https://github.com/micropython/micropython.git
synced 2026-01-09 05:30:27 +01:00
stm32/mbedtls: Resize mbedtls output buffer from 16 down to 4 kiB.
To reduce the size of the SSL context on the heap. See issue #5303.
This commit is contained in:
committed by
Damien George
parent
5e431188db
commit
90f286465b
@@ -54,6 +54,11 @@
|
||||
#define MBEDTLS_SSL_PROTO_TLS1_2
|
||||
#define MBEDTLS_SSL_SERVER_NAME_INDICATION
|
||||
|
||||
// Use a smaller output buffer to reduce size of SSL context
|
||||
#define MBEDTLS_SSL_MAX_CONTENT_LEN (16384)
|
||||
#define MBEDTLS_SSL_IN_CONTENT_LEN (MBEDTLS_SSL_MAX_CONTENT_LEN)
|
||||
#define MBEDTLS_SSL_OUT_CONTENT_LEN (4096)
|
||||
|
||||
// Enable mbedtls modules
|
||||
#define MBEDTLS_AES_C
|
||||
#define MBEDTLS_ASN1_PARSE_C
|
||||
|
||||
Reference in New Issue
Block a user