Yesterday, I wrote how to encrypt a password using a one-way MD5 hash , but as some of the comments point out, the MD5 algorithm is not strong enough. I listened and wrote a new encryption method that uses SHA256 instead...
Four years ago, I was working as a developer in a company that made custom content management systems. We offered back-ups of the databases to our customers on a monthly basis, but in those databases we stored all the...
Even though ViewState is unreadable by the human eye, it is nothing but a base64 encoded string that easily decodes by a piece of software like this one . With this knowledge in mind, you might want to look at how you...
I recently had to make a method that creates a random generated password in C#. So, I looked at the web for such a function and I found this one . It was really simple and short and just what I was looking for. But...