You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From code inspection (context: #1915), we only allow GCM and CCM modes to wrap SSL session tickets. (mbedtls_ssl_ticket_setup checks that cipher_info->mode is MBEDTLS_MODE_CCM or MBEDTLS_MODE_GCM.) We should allow any AEAD mode, including ChaChaPoly.
More generally, instead of having to enumerate the authenticated modes all the time, the cipher module should expose a function mbedtls_cipher_mode_is_authenticated.
The text was updated successfully, but these errors were encountered:
Type: Enhancement
Priority: Minor
From code inspection (context: #1915), we only allow GCM and CCM modes to wrap SSL session tickets. (
mbedtls_ssl_ticket_setup
checks thatcipher_info->mode
isMBEDTLS_MODE_CCM
orMBEDTLS_MODE_GCM
.) We should allow any AEAD mode, including ChaChaPoly.More generally, instead of having to enumerate the authenticated modes all the time, the cipher module should expose a function
mbedtls_cipher_mode_is_authenticated
.The text was updated successfully, but these errors were encountered: