1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-25 20:02:37 +03:00

Expand BSSL stack to 5750 bytes (#6153)

Fix #6143 which found a cipher combination which overran the old limit
of 5600 bytes (it required 5700 bytes).
This commit is contained in:
Earle F. Philhower, III 2019-05-27 12:51:33 -07:00 committed by GitHub
parent a4ae8564f7
commit d83eabe5b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ uint32_t *stack_thunk_top = NULL;
uint32_t *stack_thunk_save = NULL; /* Saved A1 while in BearSSL */
uint32_t stack_thunk_refcnt = 0;
#define _stackSize (5600/4)
#define _stackSize (5750/4)
#define _stackPaint 0xdeadbeef
/* Add a reference, and allocate the stack if necessary */