test: psa_pake: add missing initialization in ecjpake_setup()
Signed-off-by: Valerio Setti <vsetti@baylibre.com>
This commit is contained in:
parent
db4736a4ca
commit
e0d41de822
1 changed files with 2 additions and 1 deletions
|
@ -566,7 +566,8 @@ void ecjpake_setup( int alg_arg, int key_type_pw_arg, int key_usage_pw_arg,
|
|||
size_t output_len = 0;
|
||||
const uint8_t unsupp_id[] = "abcd";
|
||||
const uint8_t password[] = "abcd";
|
||||
psa_key_derivation_operation_t key_derivation;
|
||||
psa_key_derivation_operation_t key_derivation =
|
||||
PSA_KEY_DERIVATION_OPERATION_INIT;
|
||||
|
||||
PSA_INIT( );
|
||||
|
||||
|
|
Loading…
Reference in a new issue