No need to check for state in psa_pake_setup()

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
Neil Armstrong 2022-06-10 09:00:00 +02:00
parent a557cb8c8b
commit 5fb07c6a96

View file

@ -118,7 +118,7 @@ psa_status_t psa_pake_setup( psa_pake_operation_t *operation,
const psa_pake_cipher_suite_t *cipher_suite)
{
/* A context must be freshly initialized before it can be set up. */
if( operation->alg != 0 || operation->state != PSA_PAKE_STATE_INVALID )
if( operation->alg != 0 )
return( PSA_ERROR_BAD_STATE );
if( cipher_suite == NULL ||