Remove preprocessor directive for consistency

Other cases in this switch statement aren't guarded either.
This commit is contained in:
Manuel Pégourié-Gonnard 2020-01-24 10:59:08 +01:00
parent 3a3b5c7827
commit b7f7092f57

View File

@ -2529,10 +2529,8 @@ static size_t psa_get_hash_block_size( psa_algorithm_t alg )
return( 64 );
case PSA_ALG_SHA_256:
return( 64 );
#if !defined(MBEDTLS_SHA512_NO_SHA384)
case PSA_ALG_SHA_384:
return( 128 );
#endif
case PSA_ALG_SHA_512:
return( 128 );
default: