Fix derive_input test ignoring parameter
Fix derive_input test hardcoding key type instead of using test argument. Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
3f86a90261
commit
491d849ad1
1 changed files with 1 additions and 1 deletions
|
@ -5934,7 +5934,7 @@ void derive_input( int alg_arg,
|
|||
if( output_key_type != PSA_KEY_TYPE_NONE )
|
||||
{
|
||||
psa_reset_key_attributes( &attributes );
|
||||
psa_set_key_type( &attributes, PSA_KEY_TYPE_RAW_DATA );
|
||||
psa_set_key_type( &attributes, output_key_type );
|
||||
psa_set_key_bits( &attributes, 8 );
|
||||
actual_output_status =
|
||||
psa_key_derivation_output_key( &attributes, &operation,
|
||||
|
|
Loading…
Reference in a new issue