File Shredder Code Sample (C# 4.0)

It has been a while since I last posted a code sample. So here is one for you guys to take a look at. Below is the file/directory shredder class. class FileUtilities { private static Random Randomizer = new Random(); public static bool Shred(string directoryPath, bool shouldDelete = true) { bool success = true; try …

Image Encryption – Completed!

It has been a while since I posted so here is an update for you guys. I should (hopefully) have some time to post some more blog posts detailing my current projects over the next week or so. My image encryption tool (now known as PGIE – Pretty Good Image Encryption) is finally completed. Anyone …