Removed the whitespace which is causing CI to fail

Signed-off-by: Anton Matkin <[email protected]>
This commit is contained in:
Anton Matkin
2025-08-29 16:09:09 +02:00
parent 8135b84ed2
commit 92129adcf2
+6 -2
View File
@@ -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);