using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Core.Cryptography; namespace Tango.FSE.Common.Helpers { public static class EncryptionHelper { private static Rfc2898Cryptographer _crypt; static EncryptionHelper() { _crypt = new Rfc2898Cryptographer(); } public static String Encrypt(String text) { return _crypt.Encrypt(text); } public static String Decrypt(String text) { return _crypt.Decrypt(text); } } }