|
I want to build a simple decrypter that will decypt this kind of code "\x15\x1E\xC9\x10\x4E\xD4\xE0\x69\xA4\x3C";
This is 1 2 3 4 5 6 7 8 9 0 decrypted. Heres what it should be input box on top and you would enter a encrypted string then output box would it be decrypted.
string[] crypt = { "\x45\x4E\x99\x40\x1E\x84\xB0\x39\xF4\x66\x15\xC6\x43\x6A\xC0\xB8\xCE\x9D\x75\xD3\xD8\xA8\xFB\x3F\xB4\x2F" }; //abc's
crypt[1] = "A" ;
How would I make it run through the imput string and convert it?
|