mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 00:35:50 +01:00
Zeroize internal buffers and variables in MD hashes
Zeroising of local buffers and variables which are used for calculations in mbedtls_internal_md*_process() and mbedtls_internal_ripemd160_process() functions to erase sensitive data from memory. Checked all function for possible missing zeroisation in MD. Signed-off-by: gabor-mezei-arm <gabor.mezei@arm.com>
This commit is contained in:
parent
77d9401705
commit
cb3a742d1d
@ -1,5 +1,6 @@
|
|||||||
Security
|
Security
|
||||||
* Zeroising of local buffers and variables which are used for calculations
|
* Zeroising of local buffers and variables which are used for calculations
|
||||||
in mbedtls_pkcs5_pbkdf2_hmac() and mbedtls_internal_sha*_process()
|
in mbedtls_pkcs5_pbkdf2_hmac(), mbedtls_internal_sha*_process(),
|
||||||
|
mbedtls_internal_md*_process() and mbedtls_internal_ripemd160_process()
|
||||||
functions to erase sensitive data from memory. Reported by
|
functions to erase sensitive data from memory. Reported by
|
||||||
Johan Malmgren and Johan Uppman Bruce from Sectra.
|
Johan Malmgren and Johan Uppman Bruce from Sectra.
|
||||||
|
@ -181,6 +181,9 @@ int mbedtls_internal_md2_process( mbedtls_md2_context *ctx )
|
|||||||
t = ctx->cksum[i];
|
t = ctx->cksum[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Zeroise variables to clear sensitive data from memory. */
|
||||||
|
mbedtls_zeroize( &t, sizeof( t ) );
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,6 +247,13 @@ int mbedtls_internal_md4_process( mbedtls_md4_context *ctx,
|
|||||||
ctx->state[2] += C;
|
ctx->state[2] += C;
|
||||||
ctx->state[3] += D;
|
ctx->state[3] += D;
|
||||||
|
|
||||||
|
/* Zeroise variables to clear sensitive data from memory. */
|
||||||
|
mbedtls_zeroize( &X, sizeof( X ) );
|
||||||
|
mbedtls_zeroize( &A, sizeof( A ) );
|
||||||
|
mbedtls_zeroize( &B, sizeof( B ) );
|
||||||
|
mbedtls_zeroize( &C, sizeof( C ) );
|
||||||
|
mbedtls_zeroize( &D, sizeof( D ) );
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -266,6 +266,13 @@ int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
|
|||||||
ctx->state[2] += C;
|
ctx->state[2] += C;
|
||||||
ctx->state[3] += D;
|
ctx->state[3] += D;
|
||||||
|
|
||||||
|
/* Zeroise variables to clear sensitive data from memory. */
|
||||||
|
mbedtls_zeroize( &X, sizeof( X ) );
|
||||||
|
mbedtls_zeroize( &A, sizeof( A ) );
|
||||||
|
mbedtls_zeroize( &B, sizeof( B ) );
|
||||||
|
mbedtls_zeroize( &C, sizeof( C ) );
|
||||||
|
mbedtls_zeroize( &D, sizeof( D ) );
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -325,6 +325,19 @@ int mbedtls_internal_ripemd160_process( mbedtls_ripemd160_context *ctx,
|
|||||||
ctx->state[4] = ctx->state[0] + B + Cp;
|
ctx->state[4] = ctx->state[0] + B + Cp;
|
||||||
ctx->state[0] = C;
|
ctx->state[0] = C;
|
||||||
|
|
||||||
|
/* Zeroise variables to clear sensitive data from memory. */
|
||||||
|
mbedtls_zeroize( &A, sizeof( A ) );
|
||||||
|
mbedtls_zeroize( &B, sizeof( B ) );
|
||||||
|
mbedtls_zeroize( &C, sizeof( C ) );
|
||||||
|
mbedtls_zeroize( &D, sizeof( D ) );
|
||||||
|
mbedtls_zeroize( &E, sizeof( E ) );
|
||||||
|
mbedtls_zeroize( &Ap, sizeof( Ap ) );
|
||||||
|
mbedtls_zeroize( &Bp, sizeof( Bp ) );
|
||||||
|
mbedtls_zeroize( &Cp, sizeof( Cp ) );
|
||||||
|
mbedtls_zeroize( &Dp, sizeof( Dp ) );
|
||||||
|
mbedtls_zeroize( &Ep, sizeof( Ep ) );
|
||||||
|
mbedtls_zeroize( &X, sizeof( X ) );
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user