wa day's life in kl


Feeling mood at the moment.

About ryuu

28 this year (2007)

Current location: Kuala Lumpur

Currently reading

Your Money or Your Life

Currently listening to

s@lsa songs
Iowa's 107.5 FM

Wish list

click here (amazon wish list)



Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 2.5 License.




wFavourite blogs

mysterious world

brown paper packages

minishorts

La Vie Est Belle

hilmy

beng (never update)

xes

sui lin

No Hassle (MIA)

graceshu (MIA)

snoflek

bluek

yu san

loopymeals

gina

michaelooi

oliviasy

viewtru

winterblossom

burntmuffins

dabido




wLinkroll:




This page is powered by Blogger. Why isn't yours?
wMonday, January 27, 2003


simple encryption code i just wrote


public class testenc
{
public static void main(String args[])
{
String t = "boogledooba";
StringBuffer v = new StringBuffer();
int key = 97;
for(int i=0;i<t.length();i++)
{
char e = (char)(t.charAt(i)^key);
v.append((char)e);
}
String r = v.toString();
System.out.println(r);






v=new StringBuffer();
for(int i=0;i<r.length();i++)
{
char e = (char)(r.charAt(i)^key);
v.append((char)e);
}
System.out.println(v.toString());

}
}





posted by ryuu at 6:06 PM