crypto.utils

Members

Functions

secureZeroMemory
void secureZeroMemory(void* p, in size_t length)

Fills a block of memory with zeros. It is designed to be a more secure version of ZeroMemory. * !!! function secureZeroMemory processes data by byte. * Use this function instead of ZeroMemory when you want to ensure that your data will be overwritten promptly, as some compilers can optimize a call to ZeroMemory by removing it entirely.

Meta