Estaba aburrido y me decidí hacer el ultra simple y obsoleto cifrado Rot13 porque lo hago? Porque puedo
namespace MainHello
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			string input = "";
			input = Console.ReadLine ();


			var encrypted=String.Concat(from c in input select (char)((int)(c)+13));

			var decrypted=String.Concat(from c in encrypted select (char)((int)(c)-13));


			Console.WriteLine ("==> {0}",encrypted);
			Console.WriteLine ("==> {0}",decrypted);
		}
	}
}

}
Skype:crack8111
Responder

Volver a “Fuentes”