mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
AES_CBC ciphersuites now run purely via cipher layer
This commit is contained in:
@ -504,6 +504,9 @@ struct _ssl_transform
|
||||
md_context_t md_ctx_enc; /*!< MAC (encryption) */
|
||||
md_context_t md_ctx_dec; /*!< MAC (decryption) */
|
||||
|
||||
cipher_context_t cipher_ctx_enc; /*!< encryption context */
|
||||
cipher_context_t cipher_ctx_dec; /*!< decryption context */
|
||||
|
||||
uint32_t ctx_enc[SSL_CTX_MAX / 4]; /*!< encryption context */
|
||||
uint32_t ctx_dec[SSL_CTX_MAX / 4]; /*!< decryption context */
|
||||
|
||||
|
Reference in New Issue
Block a user