Extend mbedtls_ssl_transform struct for psa keys and alg
Signed-off-by: Przemyslaw Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
parent
430f337b49
commit
44187d7a3e
1 changed files with 6 additions and 0 deletions
|
@ -941,6 +941,12 @@ struct mbedtls_ssl_transform
|
||||||
mbedtls_cipher_context_t cipher_ctx_dec; /*!< decryption context */
|
mbedtls_cipher_context_t cipher_ctx_dec; /*!< decryption context */
|
||||||
int minor_ver;
|
int minor_ver;
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
||||||
|
mbedtls_svc_key_id_t psa_key_enc; /*!< psa encryption key */
|
||||||
|
mbedtls_svc_key_id_t psa_key_dec; /*!< psa decryption key */
|
||||||
|
psa_algorithm_t psa_alg; /*!< psa algorithm */
|
||||||
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
|
#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
|
||||||
uint8_t in_cid_len;
|
uint8_t in_cid_len;
|
||||||
uint8_t out_cid_len;
|
uint8_t out_cid_len;
|
||||||
|
|
Loading…
Reference in a new issue