/// <summary> /// Decrypt an encrypted string with the Tiny Encryption Algorithm /// </summary> public static string Decrypt(string input, string key) { Dictionary <string, string> options = new Dictionary <string, string>(); options["key"] = key; return(MtaShared.DecodeString("tea", input, options)); }