pub unsafe extern "C" fn FL_WipeMemory(dst: *mut c_void, size: usize)Expand description
Writes zeroes to size bytes of memory starting at dst.
Unlike a call to memset, these writes cannot be optimized away by the compiler.
This is useful for securely removing traces of passwords or encryption keys.