Fixed seed variable concatenation pointer.
Signed-off-by: ENT\stroej1 <john.stroebel@medtronic.com>
This commit is contained in:
parent
3c537fedfd
commit
4b91986a76
1 changed files with 1 additions and 1 deletions
|
@ -394,7 +394,7 @@ static int mbedtls_ctr_drbg_reseed_internal( mbedtls_ctr_drbg_context *ctx,
|
||||||
/* Gather entropy for a nonce if requested. */
|
/* Gather entropy for a nonce if requested. */
|
||||||
if( nonce_len != 0 )
|
if( nonce_len != 0 )
|
||||||
{
|
{
|
||||||
if( 0 != ctx->f_entropy( ctx->p_entropy, seed, nonce_len ) )
|
if( 0 != ctx->f_entropy( ctx->p_entropy, seed + seedlen, nonce_len ) )
|
||||||
{
|
{
|
||||||
return( MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED );
|
return( MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue