mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-03 19:20:18 +00:00
Merge pull request #3160 from gilles-peskine-arm/hkdf_expand-initialize_t-development
hkdf_expand: explicitly initialize t
This commit is contained in:
commit
54e1c30d1b
@ -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,11 +131,13 @@ 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
memset( t, 0, hash_len );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Compute T = T(1) | T(2) | T(3) | ... | T(N)
|
* Compute T = T(1) | T(2) | T(3) | ... | T(N)
|
||||||
* Where T(N) is defined in RFC 5869 Section 2.3
|
* Where T(N) is defined in RFC 5869 Section 2.3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user