Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text.RegularExpressions;
- using System.Text;
- namespace Joker.Encryption
- {
- /*
- Credits
- * Programmed by Cobe Makarov
- * Intended for Adil Hafeez
- * Copyright 2011
- * GNU Licensed
- */
- class JE
- {
- public void Main(string[] args)
- {
- Console.WriteLine("Key?");
- string LOL = Console.ReadLine();
- string O = Start(LOL);
- Console.WriteLine("{0}", O);
- Console.WriteLine("Would you like to decrypt {0}?", O);
- }
- public string Start(string Key)
- {
- string Encrypted = Key.Replace("a", "#%").Replace("b", "[%").Replace("c", "^%").Replace("d", "]%").Replace("e", "~%")
- .Replace("f", "_%").Replace("g", "*%").Replace("h", "{%").Replace("i", "}*").Replace("j", "|%").Replace("k", "<%")
- .Replace("l", "!%").Replace("m", "£%").Replace("n", "<_").Replace("o", "[#").Replace("p", "*+").Replace("q", "~[")
- .Replace("r", "€>").Replace("s", "'^").Replace("t", "\\|").Replace("u", "~_").Replace("v", "?'").Replace("w", "@&")
- .Replace("x", "£&").Replace("y", ":$").Replace("z", "$£");
- return Encrypted;
- }
- public string Rewind(string Key)
- {
- string Encrypted = Key.Replace("#%", "a").Replace("[%", "b").Replace("^%", "c").Replace("]%", "d").Replace("~%", "e")
- .Replace("_%", "f").Replace("*%", "g").Replace("{%", "h").Replace("}*", "i").Replace("|%", "j").Replace("<%", "k")
- .Replace("!%", "l").Replace("£%", "m").Replace("<_", "n").Replace("[#", "o").Replace("*+", "p").Replace("~[", "q")
- .Replace("€>", "r").Replace("'^", "s").Replace("\\|", "t").Replace("~_", "u").Replace("?'", "v").Replace("@&", "w")
- .Replace("£&", "x").Replace(":$", "y").Replace("$£", "z");
- return Encrypted;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment