The compiler could delete the 'memset' function call, which is used to flush 'buf' buffer. The RtlSecureZeroMemory() function should be used to erase the private data. dm-crypt.c : 708 static int crypt_iv_tcw_whitening(....) { ... out: memset(buf, 0, sizeof(buf)); return r; } ...
there is no RtlSecureZeroMemory()
I think the issue is not with alternative name, but the possible missoptimization of the memset call. And that one is sensitive...
it's missoptimization : RtlSecureZeroMemory() alternative for linux must be used