Re: [C++]First try of a XOR Encryptor
Quote:
Originally Posted by
FragFrog
A problem I encountered often too is that including some libraries, like std::cout, increases your executables filesize a lot. There is probably a way to avoid this, but I'm not aware of it.
As for overwriting, couldn't you add a warning asking the user if he wants to overwrite the file? :wink:
put this underneath the includes...
Code:
using namespace std;
Re: [C++]First try of a XOR Encryptor
i need to learn this XOR encyptian process :P
Re: [C++]First try of a XOR Encryptor
XOR was one of the first encryption methods, its very basic. But can be cool if you're new ;)