Lines Matching defs:mbedtls_ssl_transform
1085 struct mbedtls_ssl_transform { struct
1089 size_t minlen; /*!< min. ciphertext length */
1090 size_t ivlen; /*!< IV length */
1091 size_t fixed_ivlen; /*!< Fixed part of IV (AEAD) */
1092 size_t maclen; /*!< MAC(CBC) len */
1093 size_t taglen; /*!< TAG(AEAD) len */
1095 unsigned char iv_enc[16]; /*!< IV (encryption) */
1096 unsigned char iv_dec[16]; /*!< IV (decryption) */
1101 mbedtls_svc_key_id_t psa_mac_enc; /*!< MAC (encryption) */
1102 mbedtls_svc_key_id_t psa_mac_dec; /*!< MAC (decryption) */
1103 psa_algorithm_t psa_mac_alg; /*!< psa MAC algorithm */
1105 mbedtls_md_context_t md_ctx_enc; /*!< MAC (encryption) */
1106 mbedtls_md_context_t md_ctx_dec; /*!< MAC (decryption) */
1110 int encrypt_then_mac; /*!< flag for EtM activation */
1115 mbedtls_ssl_protocol_version tls_version;
1118 mbedtls_svc_key_id_t psa_key_enc; /*!< psa encryption key */
1119 mbedtls_svc_key_id_t psa_key_dec; /*!< psa decryption key */
1120 psa_algorithm_t psa_alg; /*!< psa algorithm */
1122 mbedtls_cipher_context_t cipher_ctx_enc; /*!< encryption context */
1123 mbedtls_cipher_context_t cipher_ctx_dec; /*!< decryption context */
1148 const mbedtls_ssl_transform *transform) in mbedtls_ssl_transform_uses_aead() argument