Karthik Writes The Best!
Web place where his words are worth! (BEWARE OF THIS HACKER)
Showing posts with label
encryption
.
Show all posts
Showing posts with label
encryption
.
Show all posts
Friday, September 17, 2010
A Simple Encryption Algorithm!
int Encrypt(char a)
{
if (a == ' ')
return 95;
else if (a == '\n')
return 96;
for (int x = 0; a != x; x++)
{
if (a-33 == x)
return x;
}
return 0;
}
Older Posts
Home
Subscribe to:
Posts (Atom)