mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
Temporary fix for size of cipher contexts
This commit is contained in:
@ -404,9 +404,9 @@ struct _ssl_transform
|
|||||||
md_context_t md_ctx_enc; /*!< MAC (encryption) */
|
md_context_t md_ctx_enc; /*!< MAC (encryption) */
|
||||||
md_context_t md_ctx_dec; /*!< MAC (decryption) */
|
md_context_t md_ctx_dec; /*!< MAC (decryption) */
|
||||||
|
|
||||||
/* 151 == 604 bytes is size of gcm_context (largest context in PolarSSL) */
|
/* 154 == 616 bytes is size of gcm_context (largest context in PolarSSL) */
|
||||||
uint32_t ctx_enc[151]; /*!< encryption context */
|
uint32_t ctx_enc[154]; /*!< encryption context */
|
||||||
uint32_t ctx_dec[151]; /*!< decryption context */
|
uint32_t ctx_dec[154]; /*!< decryption context */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Session specific compression layer
|
* Session specific compression layer
|
||||||
|
Reference in New Issue
Block a user