From 8f2a6dcc253a81d6a1bccd6e8a19c101ef5bdeec Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 29 May 2019 17:32:21 +0200 Subject: [PATCH] Support PSA_KEY_DERIVATION_INPUT_SEED --- library/psa_crypto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/library/psa_crypto.c b/library/psa_crypto.c index b3be2617b..d45a85200 100644 --- a/library/psa_crypto.c +++ b/library/psa_crypto.c @@ -4778,6 +4778,7 @@ psa_status_t psa_key_derivation_input_bytes( psa_key_derivation_operation_t *ope case PSA_KEY_DERIVATION_INPUT_LABEL: case PSA_KEY_DERIVATION_INPUT_SALT: case PSA_KEY_DERIVATION_INPUT_INFO: + case PSA_KEY_DERIVATION_INPUT_SEED: return( psa_key_derivation_input_raw( operation, step, data, data_length ) ); default: