Search found 1 match
- Mon Feb 03, 2014 8:22 pm
- Forum: Challenges Solved
- Topic: Didactic XOR Cipher 2
- Replies: 15
- Views: 1690
Well, I chose the hard bruteforce way with C++. Making simple things hard and complicated is what I always do :oops:. #include <iostream> #include <sstream> #include <vector> #include <fstream> using namespace std; vector <int> break_it_down(string hex_number); void crack_it(vector<int> table); int ...