mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-07-28 23:07:48 +00:00
Removed the whitespace which is causing CI to fail
Signed-off-by: Anton Matkin <[email protected]>
This commit is contained in:
+6
-2
@@ -6392,14 +6392,18 @@ static int ssl_compute_master(mbedtls_ssl_handshake_params *handshake,
|
||||
psa_set_key_algorithm(&shared_key_attributes, alg);
|
||||
psa_set_key_type(&shared_key_attributes, PSA_KEY_TYPE_DERIVE);
|
||||
|
||||
status = psa_pake_get_shared_key(&handshake->psa_pake_ctx, &shared_key_attributes, &shared_key_id);
|
||||
status = psa_pake_get_shared_key(&handshake->psa_pake_ctx,
|
||||
&shared_key_attributes,
|
||||
&shared_key_id);
|
||||
|
||||
if (status != PSA_SUCCESS) {
|
||||
psa_key_derivation_abort(&derivation);
|
||||
return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
|
||||
}
|
||||
|
||||
status = psa_key_derivation_input_key(&derivation, PSA_KEY_DERIVATION_INPUT_SECRET, shared_key_id);
|
||||
status = psa_key_derivation_input_key(&derivation,
|
||||
PSA_KEY_DERIVATION_INPUT_SECRET,
|
||||
shared_key_id);
|
||||
|
||||
psa_destroy_key(shared_key_id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user