Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shredding files in .NET

Is there a SDK that can be used in managed code to shred files securely?

EDIT: This is the only link i could find in google that helps me

EDIT: Either SDK or some kind of COM based component.

like image 233
Developer Avatar asked Jun 25 '09 23:06

Developer


1 Answers

This code from codeproject may be a good starting point.

Eraser has been around for years, you could call out to it by using System.Diagnostics.Process, or at least review the algorithm there.

like image 173
Sam Saffron Avatar answered Oct 13 '22 05:10

Sam Saffron