mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-05-30 07:07:03 +00:00
Update psa_crypto_generator_t to PSA 1.0
This commit is contained in:
parent
7d7ded85fb
commit
8dee877e8a
|
@ -632,7 +632,8 @@ static int tls_prf_generic( mbedtls_md_type_t md_type,
|
||||||
psa_algorithm_t alg;
|
psa_algorithm_t alg;
|
||||||
psa_key_policy_t policy;
|
psa_key_policy_t policy;
|
||||||
psa_key_handle_t master_slot;
|
psa_key_handle_t master_slot;
|
||||||
psa_crypto_generator_t generator = PSA_KEY_DERIVATION_OPERATION_INIT;
|
psa_key_derivation_operation_t generator =
|
||||||
|
PSA_KEY_DERIVATION_OPERATION_INIT;
|
||||||
|
|
||||||
if( ( status = psa_allocate_key( &master_slot ) ) != PSA_SUCCESS )
|
if( ( status = psa_allocate_key( &master_slot ) ) != PSA_SUCCESS )
|
||||||
return( MBEDTLS_ERR_SSL_HW_ACCEL_FAILED );
|
return( MBEDTLS_ERR_SSL_HW_ACCEL_FAILED );
|
||||||
|
@ -1108,8 +1109,9 @@ int mbedtls_ssl_derive_keys( mbedtls_ssl_context *ssl )
|
||||||
/* Perform PSK-to-MS expansion in a single step. */
|
/* Perform PSK-to-MS expansion in a single step. */
|
||||||
psa_status_t status;
|
psa_status_t status;
|
||||||
psa_algorithm_t alg;
|
psa_algorithm_t alg;
|
||||||
psa_crypto_generator_t generator = PSA_KEY_DERIVATION_OPERATION_INIT;
|
|
||||||
psa_key_handle_t psk;
|
psa_key_handle_t psk;
|
||||||
|
psa_key_derivation_operation_t generator =
|
||||||
|
PSA_KEY_DERIVATION_OPERATION_INIT;
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 2, ( "perform PSA-based PSK-to-MS expansion" ) );
|
MBEDTLS_SSL_DEBUG_MSG( 2, ( "perform PSA-based PSK-to-MS expansion" ) );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue