|
Simple ASP.NET Encryption Class - Aug 10th, 2007 1:00pm |
|
I found a couple of things out there but nothing worked exactly as I wanted that I could either a) understand or b) see the source. What I did find was several sites that had all created parts of what I needed so took what was out there, hit blend, added some spices and viola. I've attached the result to this post. Just put the class in your App_Code directory, change the passphrase to something only you know and then call it as follows:
Dim a_string As String
Dim data_encryption As DataEncryption
Dim encrypted_string As String
Dim decrypted_string As String
a_string = "hello world"
data_encryption = New DataEncryption
encrypted_string = data_encryption.encryptString(a_string)
decrypted_string = data_encryption.decryptString(encrypted_string)
Thats all there is to it, the encrypted string is base 64 encoded so its safe to print to the screen or store in textual database fields. Hope this helps someone - if so add a comment and let me know :)