With this easy to use component you can take text and encrypt it, then within your application use the decrypt method to grab the value. For those who use shared hosting and want to secure your passwords you must get this component. Because we know your applications are important to you we're offering this component at a fraction of other companies at just $17.77 (USD).

PayPal - The safer, easier way to pay online! from PayPal

How to use this component

Add this component as a reference to your .net application, then start encrypting and decrypting. Below is an example of what you can do so you can see how it works. Please do not use the below example for production systems, change the InitVector, You can also set your own Salt and Token.

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim _e As New FastItSolutions.Crypt() _e.InitVector = "m40gyxqlg0om2fvy" Dim f As String = _e.Encrypt("testing") Dim g As String = _e.Decrypt(f) Response.Write(String.Format("{0}={1}", f, g)) End Sub
The response would look something like this:
RigW6PbTtSDKnlyoZmioDw==
testing
InitVector* This should be 16 characters long
Salt This can be anything you want it to be and as long as you want it to be
Token This can be anything you want it to be and as long as you want it to be
* denotes a required field