mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 19:25:28 +00:00
psa: Disallow use of invalid hash contexts
If a hash context has not been set up, fail with PSA_ERROR_BAD_STATE as documented in crypto.h and the PSA Crypto specification.
This commit is contained in:
parent
ab43997f44
commit
a0f625ac9a
|
@ -1502,8 +1502,7 @@ psa_status_t psa_hash_update( psa_hash_operation_t *operation,
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
ret = MBEDTLS_ERR_MD_BAD_INPUT_DATA;
|
return( PSA_ERROR_BAD_STATE );
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if( ret != 0 )
|
if( ret != 0 )
|
||||||
|
@ -1575,8 +1574,7 @@ psa_status_t psa_hash_finish( psa_hash_operation_t *operation,
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
ret = MBEDTLS_ERR_MD_BAD_INPUT_DATA;
|
return( PSA_ERROR_BAD_STATE );
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
status = mbedtls_to_psa_error( ret );
|
status = mbedtls_to_psa_error( ret );
|
||||||
|
|
||||||
|
|
|
@ -1950,6 +1950,7 @@ exit:
|
||||||
/* BEGIN_CASE */
|
/* BEGIN_CASE */
|
||||||
void hash_operation_init( )
|
void hash_operation_init( )
|
||||||
{
|
{
|
||||||
|
const uint8_t input[1] = { 0 };
|
||||||
/* Test each valid way of initializing the object, except for `= {0}`, as
|
/* Test each valid way of initializing the object, except for `= {0}`, as
|
||||||
* Clang 5 complains when `-Wmissing-field-initializers` is used, even
|
* Clang 5 complains when `-Wmissing-field-initializers` is used, even
|
||||||
* though it's OK by the C standard. We could test for this, but we'd need
|
* though it's OK by the C standard. We could test for this, but we'd need
|
||||||
|
@ -1960,6 +1961,14 @@ void hash_operation_init( )
|
||||||
|
|
||||||
memset( &zero, 0, sizeof( zero ) );
|
memset( &zero, 0, sizeof( zero ) );
|
||||||
|
|
||||||
|
/* A default hash operation should not be usable. */
|
||||||
|
TEST_EQUAL( psa_hash_update( &func, input, sizeof( input ) ),
|
||||||
|
PSA_ERROR_BAD_STATE );
|
||||||
|
TEST_EQUAL( psa_hash_update( &init, input, sizeof( input ) ),
|
||||||
|
PSA_ERROR_BAD_STATE );
|
||||||
|
TEST_EQUAL( psa_hash_update( &zero, input, sizeof( input ) ),
|
||||||
|
PSA_ERROR_BAD_STATE );
|
||||||
|
|
||||||
/* A default hash operation should be abortable without error. */
|
/* A default hash operation should be abortable without error. */
|
||||||
PSA_ASSERT( psa_hash_abort( &func ) );
|
PSA_ASSERT( psa_hash_abort( &func ) );
|
||||||
PSA_ASSERT( psa_hash_abort( &init ) );
|
PSA_ASSERT( psa_hash_abort( &init ) );
|
||||||
|
@ -2004,18 +2013,18 @@ void hash_bad_order( )
|
||||||
/* psa_hash_update without calling psa_hash_setup beforehand */
|
/* psa_hash_update without calling psa_hash_setup beforehand */
|
||||||
memset( &operation, 0, sizeof( operation ) );
|
memset( &operation, 0, sizeof( operation ) );
|
||||||
TEST_EQUAL( psa_hash_update( &operation, input, sizeof( input ) ),
|
TEST_EQUAL( psa_hash_update( &operation, input, sizeof( input ) ),
|
||||||
PSA_ERROR_INVALID_ARGUMENT );
|
PSA_ERROR_BAD_STATE );
|
||||||
|
|
||||||
/* psa_hash_verify without calling psa_hash_setup beforehand */
|
/* psa_hash_verify without calling psa_hash_setup beforehand */
|
||||||
memset( &operation, 0, sizeof( operation ) );
|
memset( &operation, 0, sizeof( operation ) );
|
||||||
TEST_EQUAL( psa_hash_verify( &operation, hash, sizeof( hash ) ),
|
TEST_EQUAL( psa_hash_verify( &operation, hash, sizeof( hash ) ),
|
||||||
PSA_ERROR_INVALID_ARGUMENT );
|
PSA_ERROR_BAD_STATE );
|
||||||
|
|
||||||
/* psa_hash_finish without calling psa_hash_setup beforehand */
|
/* psa_hash_finish without calling psa_hash_setup beforehand */
|
||||||
memset( &operation, 0, sizeof( operation ) );
|
memset( &operation, 0, sizeof( operation ) );
|
||||||
TEST_EQUAL( psa_hash_finish( &operation,
|
TEST_EQUAL( psa_hash_finish( &operation,
|
||||||
hash, sizeof( hash ), &hash_len ),
|
hash, sizeof( hash ), &hash_len ),
|
||||||
PSA_ERROR_INVALID_ARGUMENT );
|
PSA_ERROR_BAD_STATE );
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
mbedtls_psa_crypto_free( );
|
mbedtls_psa_crypto_free( );
|
||||||
|
|
Loading…
Reference in a new issue