This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Collections; | |
using System.Security.Cryptography; | |
public class Crypt | |
{ | |
private const string AesIV = @"8863d67c62113fb8"; | |
private const string AesKey = @"2eeee02d3dc3ef6c"; | |
public string EnCrypt( string text ) |
NewerOlder