1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

block_cipher: remove psa_key_type from mbedtls_block_cipher_context_t

This information was redundant with the already existing mbedtls_block_cipher_id_t.

Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
Valerio Setti
2023-12-15 16:10:52 +01:00
parent 52ab8fa565
commit 4ff405cf80
2 changed files with 19 additions and 19 deletions

View File

@@ -53,7 +53,6 @@ typedef struct {
mbedtls_block_cipher_id_t MBEDTLS_PRIVATE(id);
#if defined(MBEDTLS_BLOCK_CIPHER_SOME_PSA)
mbedtls_block_cipher_engine_t MBEDTLS_PRIVATE(engine);
psa_key_type_t MBEDTLS_PRIVATE(psa_key_type);
mbedtls_svc_key_id_t MBEDTLS_PRIVATE(psa_key_id);
#endif
union {