qCrypt - One side encryption. It's kinda hard to decrypt it. Although if used small amount of letters it's not so hard. Very basic encryption. Feel free to modify/improve it and upload of course so everyone can see. 
Screenshot: http://img337.imageshack.us/img337/4745/66454548.png
Download: http://yy.lv/download.php?f=69738
Example:
I love RaGEZONE -> 67937422414128769424316766586502
I iove RaGEZONE -> 43694397774867024729779803447143
Main Form
PHP Code:
namespace qCrypt
{
public partial class frmMainForm : Form
{
public frmMainForm()
{
InitializeComponent();
}
private void buttonEncrypt_Click(object sender, EventArgs e)
{
Encrypt.StartEncryption(textBoxUncrypted.Text);
textBoxEncrypted.Text = Encrypt.ReturnString();
}
}
}
Encrypt
PHP Code:
namespace qCrypt.Classes
{
static class Encrypt
{
static string FinalIntegers;
static string EncryptText;
static int[] MyIntArray = new int[32];
public static void StartEncryption(string MyText)
{
//Uppering it just in case.
MyText = MyText.ToUpper();
//Making these strings empty.
FinalIntegers = string.Empty;
EncryptText = string.Empty;
//Main loop where checking each letter.
for (int i = 0; i < MyText.Length; i++)
{
if (MyText[i] == 'A')
{
EncryptText = "67147804386935659614295334925265";
}
if (MyText[i] == 'B')
{
EncryptText = "40234261117512095921888831693698";
}
if (MyText[i] == 'C')
{
EncryptText = "25554594088772765822059033491034";
}
if (MyText[i] == 'D')
{
EncryptText = "49257666344761728762503183692300";
}
if (MyText[i] == 'E')
{
EncryptText = "92345676992698286431550173278515";
}
if (MyText[i] == 'F')
{
EncryptText = "93726526035464017048882091246568";
}
if (MyText[i] == 'G')
{
EncryptText = "24590313462079242595407758509550";
}
if (MyText[i] == 'H')
{
EncryptText = "83759930172522751880516343255280";
}
if (MyText[i] == 'I')
{
EncryptText = "90291595376905753003909888385940";
}
if (MyText[i] == 'K')
{
EncryptText = "37127880863226049166796151709548";
}
if (MyText[i] == 'L')
{
EncryptText = "71461042420384157122852407900801";
}
if (MyText[i] == 'M')
{
EncryptText = "58006678924036605768805688980313";
}
if (MyText[i] == 'N')
{
EncryptText = "12447122735386729167866363617985";
}
if (MyText[i] == 'O')
{
EncryptText = "36141394090474783907420403818251";
}
if (MyText[i] == 'P')
{
EncryptText = "99248304649302231675368493493475";
}
if (MyText[i] == 'Q')
{
EncryptText = "40735018298008298730725431001991";
}
if (MyText[i] == 'R')
{
EncryptText = "81629254782078072283690311362428";
}
if (MyText[i] == 'S')
{
EncryptText = "11484931118782297739315078625300";
}
if (MyText[i] == 'T')
{
EncryptText = "80642658828236815024324663471131";
}
if (MyText[i] == 'V')
{
EncryptText = "98185113022618718347727108401890";
}
if (MyText[i] == 'W')
{
EncryptText = "64055954743088822242668717475581";
}
if (MyText[i] == 'X')
{
EncryptText = "34011518510939004400504471925399";
}
if (MyText[i] == 'Y')
{
EncryptText = "34044922747088848241238723934011";
}
if (MyText[i] == 'Z')
{
EncryptText = "34084952747088846202261871934781";
}
for (int n = 0; n < 32; n++)
{
//Adding.
MyIntArray[n] = MyIntArray[n] + Convert.ToInt32(EncryptText[n]);
//Checking if the value is more than 10.
while (MyIntArray[n] > 9)
{
MyIntArray[n] = MyIntArray[n] - 10;
}
}
}
//Adding everything.
for (int i = 0; i < 32; i++)
{
FinalIntegers = FinalIntegers + Convert.ToString(MyIntArray[i]);
}
//TODO - Add your own sequence here. - TODO//
}
//Returning encrypted text.
public static string ReturnString()
{
return FinalIntegers;
}
}
}