Skip to content

Commit d83eabe

Browse files
Expand BSSL stack to 5750 bytes (esp8266#6153)
Fix esp8266#6143 which found a cipher combination which overran the old limit of 5600 bytes (it required 5700 bytes).
1 parent a4ae856 commit d83eabe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp8266/StackThunk.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ uint32_t *stack_thunk_top = NULL;
3636
uint32_t *stack_thunk_save = NULL; /* Saved A1 while in BearSSL */
3737
uint32_t stack_thunk_refcnt = 0;
3838

39-
#define _stackSize (5600/4)
39+
#define _stackSize (5750/4)
4040
#define _stackPaint 0xdeadbeef
4141

4242
/* Add a reference, and allocate the stack if necessary */

0 commit comments

Comments
 (0)