mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-15 10:27:40 +00:00
Style: enforce 80 column limit
This commit is contained in:
parent
c56215163f
commit
51f4a0f9ac
|
@ -4846,10 +4846,11 @@ static psa_status_t psa_key_derivation_input_internal(
|
||||||
return( status );
|
return( status );
|
||||||
}
|
}
|
||||||
|
|
||||||
psa_status_t psa_key_derivation_input_bytes( psa_key_derivation_operation_t *operation,
|
psa_status_t psa_key_derivation_input_bytes(
|
||||||
psa_key_derivation_step_t step,
|
psa_key_derivation_operation_t *operation,
|
||||||
const uint8_t *data,
|
psa_key_derivation_step_t step,
|
||||||
size_t data_length )
|
const uint8_t *data,
|
||||||
|
size_t data_length )
|
||||||
{
|
{
|
||||||
if( step == PSA_KEY_DERIVATION_INPUT_SECRET )
|
if( step == PSA_KEY_DERIVATION_INPUT_SECRET )
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
return( PSA_ERROR_INVALID_ARGUMENT );
|
||||||
|
@ -4858,9 +4859,10 @@ psa_status_t psa_key_derivation_input_bytes( psa_key_derivation_operation_t *ope
|
||||||
data, data_length ) );
|
data, data_length ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
psa_status_t psa_key_derivation_input_key( psa_key_derivation_operation_t *operation,
|
psa_status_t psa_key_derivation_input_key(
|
||||||
psa_key_derivation_step_t step,
|
psa_key_derivation_operation_t *operation,
|
||||||
psa_key_handle_t handle )
|
psa_key_derivation_step_t step,
|
||||||
|
psa_key_handle_t handle )
|
||||||
{
|
{
|
||||||
psa_key_slot_t *slot;
|
psa_key_slot_t *slot;
|
||||||
psa_status_t status;
|
psa_status_t status;
|
||||||
|
|
Loading…
Reference in a new issue