Check for memory leaks in C/C++ programs

A great tool for checking and tracing memory leaks is valgrind. I am using it very often and it helped me very much when I was writing the bfmd5 software. You can use it both for C and C++ programs. valgrind uses its own environment to check your program and gives you report for memory…More

bfmd5

I have been wondering lately about the speed of Md5CrackGui software that I have written a while ago in Java, so I decided to rewrite it in C and compare the time that each software needs for password recovery. bfmd5 is written in C as I said and it is under GPLv3 License. For more…More