|
BugTraq
When scrubbing secrets in memory doesn't work Nov 05 2002 10:13PM Michael Howard (mikehow microsoft com) (3 replies) Re: When scrubbing secrets in memory doesn't work Nov 08 2002 04:23PM Michael Zimmermann (zim vegaa de) (1 replies) Re: When scrubbing secrets in memory doesn't work Nov 11 2002 11:46AM Jan Echternach (jan goneko de) Re: When scrubbing secrets in memory doesn't work Nov 06 2002 12:55PM Gianni Tedesco (gianni ecsc co uk) (1 replies) |
|
Privacy Statement |
"Michael Howard" <mikehow (at) microsoft (dot) com [email concealed]> writes:
> On the surface, this looks fine, until you look at the ASM output, and
> you see the call to memset has been removed by the optimizer because
> szPwd is not read once the function completes. Hence, the secret data is
> still floating in memory.
Thats why you have to declare such data volatile -- to prevent
optimizers from becoming too anxious to help.
--
Perry E. Metzger perry (at) piermont (dot) com [email concealed]
[ reply ]