Lines Matching defs:mbedtls_ssl_transform
1100 struct mbedtls_ssl_transform { struct
1104 size_t minlen; /*!< min. ciphertext length */
1105 size_t ivlen; /*!< IV length */
1106 size_t fixed_ivlen; /*!< Fixed part of IV (AEAD) */
1107 size_t maclen; /*!< MAC(CBC) len */
1108 size_t taglen; /*!< TAG(AEAD) len */
1110 unsigned char iv_enc[16]; /*!< IV (encryption) */
1111 unsigned char iv_dec[16]; /*!< IV (decryption) */
1116 mbedtls_svc_key_id_t psa_mac_enc; /*!< MAC (encryption) */
1117 mbedtls_svc_key_id_t psa_mac_dec; /*!< MAC (decryption) */
1118 psa_algorithm_t psa_mac_alg; /*!< psa MAC algorithm */
1120 mbedtls_md_context_t md_ctx_enc; /*!< MAC (encryption) */
1121 mbedtls_md_context_t md_ctx_dec; /*!< MAC (decryption) */
1125 int encrypt_then_mac; /*!< flag for EtM activation */
1130 mbedtls_ssl_protocol_version tls_version;
1133 mbedtls_svc_key_id_t psa_key_enc; /*!< psa encryption key */
1134 mbedtls_svc_key_id_t psa_key_dec; /*!< psa decryption key */
1135 psa_algorithm_t psa_alg; /*!< psa algorithm */
1137 mbedtls_cipher_context_t cipher_ctx_enc; /*!< encryption context */
1138 mbedtls_cipher_context_t cipher_ctx_dec; /*!< decryption context */
1163 const mbedtls_ssl_transform *transform) in mbedtls_ssl_transform_uses_aead() argument