blob: 0e3196698de219bc77451979bb5f20f5e262598b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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);
}
}
}
|