Secure File Deleting in C
i need to securly delete a file in C, here is what i do:
- use fopen to get a handle of the file
- calculate the size using lseek/ftell
- get random seed depending on current time/or file size
- write (size) bytes to the file from a loop with 256 bytes written each iteration
- fflush/fclose the file handle
- reopen the file and re-do steps 3-6 for 10~15 times
- rename the file then delete it
is that how its done? cause i read the name "Gutmann 25 passes" in Eraser, so i guess 25 is the number of times the file is overwritten and 'Gutmann' is the Randomization Algorithm?

