Encryption encryption = new Encryption(); //Trial Mode
//Encryption encryption = new Encryption("place user name here", "place license key here"); //License Mode
string oneTimePassword = encryption.CreateTimedOneTimePassword("SecretPassword", 1);
Console.WriteLine(oneTimePassword);
Assert.IsTrue(encryption.VerifyTimeOneTimePassword("SecretPassword", 1, oneTimePassword));
System.Threading.Thread.Sleep(1000);
string anotherOneTimePassword = encryption.CreateTimedOneTimePassword("SecretPassword", 1);
Console.WriteLine(anotherOneTimePassword);
Assert.AreNotEqual(oneTimePassword, anotherOneTimePassword);