My entry? Done in C#.



private string strEnc(string text)
{
string encrypt = "";
byte[] bytes = System.Text.Encoding.UTF8.GetBytes(text);

...