Fix whitespace style
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
6f8aaba524
commit
60d6516c60
@ -115,7 +115,7 @@ int mbedtls_hkdf_expand( const mbedtls_md_info_t *md, const unsigned char *prk,
|
|||||||
|
|
||||||
n = okm_len / hash_len;
|
n = okm_len / hash_len;
|
||||||
|
|
||||||
if( (okm_len % hash_len) != 0 )
|
if( okm_len % hash_len != 0 )
|
||||||
{
|
{
|
||||||
n++;
|
n++;
|
||||||
}
|
}
|
||||||
@ -131,7 +131,7 @@ int mbedtls_hkdf_expand( const mbedtls_md_info_t *md, const unsigned char *prk,
|
|||||||
|
|
||||||
mbedtls_md_init( &ctx );
|
mbedtls_md_init( &ctx );
|
||||||
|
|
||||||
if( (ret = mbedtls_md_setup( &ctx, md, 1) ) != 0 )
|
if( ( ret = mbedtls_md_setup( &ctx, md, 1 ) ) != 0 )
|
||||||
{
|
{
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user