Advertisement
SecurityObscurity

Zelix Klassmaster decrypt strings

Feb 26th, 2013
2,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.88 KB | None | 0 0
  1. public class Decode
  2. {
  3.     private final String z[] = {"-oc\022{4kv\006'.zl]\024$mp\000&\004a{\007'(by\026'",
  4.                                 "-oc\022{4kv\006'.zl]\0055gc\0329\"ip\027\020?mp\003!.a{263gz\035",
  5.                                 "#aE\001<1gy\0262\"j","ijy\037",
  6.                                 "2}p\001{/ax\026","hM",
  7.                                 "ikm\026","$cq]0?k",
  8.                                 "j}","izx\003",
  9.                                 "\004a{\0070)z87<4~z\000<3gz\035", "5kr\000#5='"};
  10.    
  11.     public Decode()
  12.     {
  13.         char[] keys = new char[] {71,14,21,115,85};
  14.         for(int i = 0; i < z.length; i++ )
  15.         {
  16.             char[] ac = z[i].toCharArray();
  17.             for (int x = 0; x < ac.length; x++)
  18.             {    
  19.                 ac[x] ^= keys[x%5];
  20.             }
  21.             System.out.println( new String( ac ) );
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement