Encryption is a must whenever data that is personal/private needs to be stored. And it's still important if the data is only going to be used for a very short period of time - like being passed in the query string of a website.
Dim EncryptObject As Fortunate.Encrypt = New Fortunate.Encrypt
'---Loose encryption
EncryptObject.EncryptString("Encrypt this text")
'---Strong encryption (with key pair one key private the other public and provided via the method)
EncryptObject.EncryptString128Bit("Encrypt this text", "EncryptionKeyAsString")
By entering numbers and/or text in the text box below and clicking the encrypt button you will be able to see the results of using the Fortunate.Encrypt object. The Fortunate.Encrypt object can also decrypt the result.
|