A simple application that encrypt/decrypt ROT13 codes.
Can be compiled to all platforms. Pretty basic.
-
For most platforms, simply open up the C++ compiler IDE, usually DevC++ or Code::Blocks and compile and run it. That's it!
-
Also, you can use either g++/c++ or clang in Unix-based platforms to compile it:
g++ rot13crypt.cpp -o rot13crypt
chmod 700 rot13crypt
./rot13crypt
-
Enjoy creating the ROT13 code...have fun!