mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Fix style issue in hash_setup()
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
parent
66a479f8fb
commit
ee9686b446
|
|
@ -1910,7 +1910,7 @@ void hash_setup( int alg_arg,
|
|||
PSA_ASSERT( psa_crypto_init( ) );
|
||||
|
||||
/* Hash Setup, one-shot */
|
||||
output_size = PSA_HASH_LENGTH(alg);
|
||||
output_size = PSA_HASH_LENGTH( alg );
|
||||
ASSERT_ALLOC( output, output_size );
|
||||
|
||||
status = psa_hash_compute( alg, NULL, 0,
|
||||
|
|
|
|||
Loading…
Reference in a new issue