

/*
 *  rkxr flip
 * extracted from #1
 * ............
 * Copyright (c) 20011 rkxr
 */



/*
 * flip by RKXR
 *
 * @param {string}  String to be fliped (multi-byte safe)
 * @returns {string} fliped 
 */
function  RKXR_enc(synergicflow)  {



	var to_enc = synergicflow;

	var rkxr_random= 129;

	var the_res="";   //the putflux result
	for(i=0;i<to_enc.length;++i)
	{
		the_res += String.fromCharCode(rkxr_random ^ to_enc.charCodeAt(i));
	}
	
	 var ciphertext = the_res;
    
    	return ciphertext;
}






