Imports ForAspNet.Parole

Module Module1

    Sub Main()
        ForAspNet.Parole.License.LicenseKey = "<put license code here>"
        Dim objParole As New Parole
        Dim As Integer
        For I = 1 To 10
            Console.WriteLine(objParole.generatePassword())
        Next
        Dim encrypedPassword As String = objParole.encryptPassword("password")
        Console.WriteLine("Encryped Password: " + encrypedPassword)
        Console.WriteLine("Decryped Password: " + objParole.decryptPassword(encrypedPassword))
        Console.WriteLine("Press Enter to exit...")
        Console.ReadLine()
    End Sub

End Module